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