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