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