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