DBFILESCreateFolderResultSerializer
Objective-C
@interface DBFILESCreateFolderResultSerializer : NSObject
Swift
class DBFILESCreateFolderResultSerializer : NSObject
The serialization class for the CreateFolderResult struct.
-
Serializes
DBFILESCreateFolderResultinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESCreateFolderResult *)instance;Swift
class func serialize(_ instance: DBFILESCreateFolderResult) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESCreateFolderResultAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESCreateFolderResultAPI object. -
Deserializes
DBFILESCreateFolderResultinstances.Declaration
Objective-C
+ (nonnull DBFILESCreateFolderResult *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESCreateFolderResultParameters
dictA json-compatible dictionary representation of the
DBFILESCreateFolderResultAPI object.Return Value
An instantiation of the
DBFILESCreateFolderResultobject.
View on GitHub
DBFILESCreateFolderResultSerializer Class Reference