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