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