PostOfficeBox property

String? PostOfficeBox
Gets or sets the postOfficeBox.

Implementation

String? get PostOfficeBox => this._postOfficeBox;
void PostOfficeBox=(String? value)

Implementation

set PostOfficeBox(String? value) {
  if (this.CanSetFieldValue(this._postOfficeBox, value)) {
    this._postOfficeBox = value;
    this.Changed();
  }
}