EnhancedLocation property

EnhancedLocation? EnhancedLocation
Gets the a value representing the intended free/busy status of the meeting. Gets the change highlights of the meeting request. Gets the Enhanced location object.

Implementation

//        LegacyFreeBusyStatus get IntendedFreeBusyStatus => this.PropertyBag[MeetingRequestSchema.IntendedFreeBusyStatus];

/// <summary>
/// Gets the change highlights of the meeting request.
/// </summary>
//        ChangeHighlights get ChangeHighlights => this.PropertyBag[MeetingRequestSchema.ChangeHighlights];

/// <summary>
/// Gets the Enhanced location object.
/// </summary>
complex.EnhancedLocation? get EnhancedLocation =>
    this.PropertyBag[MeetingRequestSchema.EnhancedLocation]
        as complex.EnhancedLocation?;