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