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