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