bookingsAvailabilityWindow resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the availability details of a booking service in a scheduling policy between two dates.

Inherits from bookingsAvailability.

Properties

Property Type Description
availabilityType bookingsServiceAvailabilityType Availability type defined by the given bookingsAvailability. The possible values are: bookWhenStaffAreFree, notBookable, customWeeklyHours, unknownFutureValue.
businessHours bookingWorkHours collection The hours of operation in a week. The business hours value is set to null if the availability type isn't customWeeklyHours.
endDate Date End date of the availability window.
startDate Date Start date of the availability window.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.bookingsAvailabilityWindow",
  "availabilityType": "String",
  "businessHours": [
    {
      "@odata.type": "microsoft.graph.bookingWorkHours"
    }
  ],
  "startDate": "Date",
  "endDate": "Date"
}