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