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