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