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