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