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