/**
 * KADiCon API
 *
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

export interface FindAvailableTablesByTimeSlotResponse {
	id: string
	name: string
	tableNames?: Array<string>
	type: FindAvailableTablesByTimeSlotResponse.TypeEnum
	capacity: number
	hasUnconfirmedReservation?: boolean
}
export namespace FindAvailableTablesByTimeSlotResponse {
	export const TypeEnum = {
		Table: 'Table',
		TableCombination: 'TableCombination',
	} as const
	export type TypeEnum = (typeof TypeEnum)[keyof typeof TypeEnum]
}
