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