MailboxType property

MailboxType? MailboxType
Gets or sets the type of the e-mail address.

Implementation

enumerations.MailboxType? get MailboxType => this.mailboxType;
void MailboxType=(MailboxType? value)

Implementation

set MailboxType(enumerations.MailboxType? value) {
  if (this.CanSetFieldValue(this.mailboxType, value)) {
    this.mailboxType = value;
    this.Changed();
  }
}