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