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