EnhancedLocation property

EnhancedLocation? EnhancedLocation
Gets or sets the Enhanced location object.

Implementation

complex.EnhancedLocation? get EnhancedLocation =>
    this.PropertyBag[AppointmentSchema.EnhancedLocation]
        as complex.EnhancedLocation?;
void EnhancedLocation=(EnhancedLocation? value)

Implementation

set EnhancedLocation(complex.EnhancedLocation? value) =>
    this.PropertyBag[AppointmentSchema.EnhancedLocation] = value;