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