DBTEAMLOGAccountCaptureNotificationEmailsSentDetails
Objective-C
@interface DBTEAMLOGAccountCaptureNotificationEmailsSentDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGAccountCaptureNotificationEmailsSentDetails : NSObject, DBSerializable, NSCopying
The AccountCaptureNotificationEmailsSentDetails
struct.
Sent account capture email to all unmanaged members.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Domain name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull domainName;
Swift
var domainName: String { get }
-
Account-capture email notification type.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCaptureNotificationType *notificationType;
Swift
var notificationType: DBTEAMLOGAccountCaptureNotificationType? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDomainName:(nonnull NSString *)domainName notificationType: (nullable DBTEAMLOGAccountCaptureNotificationType *)notificationType;
Swift
init(domainName: String, notificationType: DBTEAMLOGAccountCaptureNotificationType?)
Parameters
domainName
Domain name.
notificationType
Account-capture email notification type.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithDomainName:(nonnull NSString *)domainName;
Swift
init(domainName: String)
Parameters
domainName
Domain name.
Return Value
An initialized instance.