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