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