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