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