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