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