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