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