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