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