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