import type * as Square from "../index"; /** * Defines an appointment slot that encapsulates the appointment segments, location and starting time available for booking. */ export interface Availability { /** The RFC 3339 timestamp specifying the beginning time of the slot available for booking. */ startAt?: string | null; /** The ID of the location available for booking. */ locationId?: string; /** The list of appointment segments available for booking */ appointmentSegments?: Square.AppointmentSegment[] | null; }