AllowNewTimeProposal property

bool? get 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?;
set AllowNewTimeProposal (bool? value)

Implementation

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