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