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