DBFILESListFolderContinueErrorSerializer
@interface DBFILESListFolderContinueErrorSerializer : NSObject
The serialization class for the DBFILESListFolderContinueError
union.
-
Serializes
DBFILESListFolderContinueError
instances.Declaration
Objective-C
+ (nullable NSDictionary *)serialize: (nonnull DBFILESListFolderContinueError *)instance;
Swift
class func serialize(_ instance: DBFILESListFolderContinueError) -> [AnyHashable : Any]?
Parameters
instance
An instance of the
DBFILESListFolderContinueError
API object.Return Value
A json-compatible dictionary representation of the
DBFILESListFolderContinueError
API object. -
Deserializes
DBFILESListFolderContinueError
instances.Declaration
Objective-C
+ (nonnull DBFILESListFolderContinueError *)deserialize: (nonnull NSDictionary *)dict;
Swift
class func deserialize(_ dict: [AnyHashable : Any]) -> DBFILESListFolderContinueError
Parameters
dict
A json-compatible dictionary representation of the
DBFILESListFolderContinueError
API object.Return Value
An instantiation of the
DBFILESListFolderContinueError
object.