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