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