DBSHARINGUnmountFolderArgSerializer
Objective-C
@interface DBSHARINGUnmountFolderArgSerializer : NSObject
Swift
class DBSHARINGUnmountFolderArgSerializer : NSObject
The serialization class for the UnmountFolderArg
struct.
-
Serializes
DBSHARINGUnmountFolderArg
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBSHARINGUnmountFolderArg *)instance;
Swift
class func serialize(_ instance: DBSHARINGUnmountFolderArg) -> [String : Any]?
Parameters
instance
An instance of the
DBSHARINGUnmountFolderArg
API object.Return Value
A json-compatible dictionary representation of the
DBSHARINGUnmountFolderArg
API object. -
Deserializes
DBSHARINGUnmountFolderArg
instances.Declaration
Objective-C
+ (nonnull DBSHARINGUnmountFolderArg *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBSHARINGUnmountFolderArg
Parameters
dict
A json-compatible dictionary representation of the
DBSHARINGUnmountFolderArg
API object.Return Value
An instantiation of the
DBSHARINGUnmountFolderArg
object.