busyStatus property

EventBusyStatus? busyStatus

Gets the propriety busy status that attendees should use when accepting this event.

Is retrieved from the X-MICROSOFT-CDO-BUSYSTATUS custom property.

Implementation

EventBusyStatus? get busyStatus =>
    getProperty<EventBusyStatusProperty>(EventBusyStatusProperty.propertyName)
        ?.eventBusyStatus;
void busyStatus=(EventBusyStatus? value)

Sets the proprietary X-MICROSOFT-CDO-BUSYSTATUS property.

Implementation

set busyStatus(EventBusyStatus? value) => setOrRemoveProperty(
    EventBusyStatusProperty.propertyName,
    EventBusyStatusProperty.create(value));