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