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