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