AllowNewTimeProposal property

bool? AllowNewTimeProposal
Gets or sets a value indicating whether new time proposals are allowed for attendees of this meeting.

Implementation

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

Implementation

set AllowNewTimeProposal(bool? value) =>
    this.PropertyBag[AppointmentSchema.AllowNewTimeProposal] = value;