DBFILESDownloadArgSerializer
Objective-C
@interface DBFILESDownloadArgSerializer : NSObject
Swift
class DBFILESDownloadArgSerializer : NSObject
The serialization class for the DownloadArg struct.
-
Serializes
DBFILESDownloadArginstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESDownloadArg *)instance;Swift
class func serialize(_ instance: DBFILESDownloadArg) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESDownloadArgAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESDownloadArgAPI object. -
Deserializes
DBFILESDownloadArginstances.Declaration
Objective-C
+ (nonnull DBFILESDownloadArg *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESDownloadArgParameters
dictA json-compatible dictionary representation of the
DBFILESDownloadArgAPI object.Return Value
An instantiation of the
DBFILESDownloadArgobject.
View on GitHub
DBFILESDownloadArgSerializer Class Reference