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