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