OfficeLocation property

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

Implementation

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

Implementation

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