OfficeLocation property

String? get OfficeLocation
Gets or sets the location of the contact's office.

Implementation

String? get OfficeLocation =>
    this.PropertyBag[ContactSchema.OfficeLocation] as String?;
set OfficeLocation (String? value)

Implementation

set OfficeLocation(String? value) =>
    this.PropertyBag[ContactSchema.OfficeLocation] = value;