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