EnhancedLocation property

EnhancedLocation? EnhancedLocation
Gets the proposed start time of the appointment. Gets the proposed end time of the appointment. Gets the Enhanced location object.

Implementation

// DateTime get ProposedStart =>this.PropertyBag[MeetingResponseSchema.ProposedStart];

/// <summary>
/// Gets the proposed end time of the appointment.
/// </summary>
// DateTime get ProposedEnd => this.PropertyBag[MeetingResponseSchema.ProposedEnd];

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