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