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