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