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