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