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