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