/**
 * 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 TableResponse {
	id: string
	name: string
	capacity: number
	width: number
	height: number
	columnStart: number
	rowStart: number
	priority: TableResponse.PriorityEnum
	shape: TableResponse.ShapeEnum
	subscribers?: Array<string>
}
export namespace TableResponse {
	export const PriorityEnum = {
		low: 'low',
		normal: 'normal',
		high: 'high',
	} as const
	export type PriorityEnum = (typeof PriorityEnum)[keyof typeof PriorityEnum]
	export const ShapeEnum = {
		rectangle: 'rectangle',
		round: 'round',
	} as const
	export type ShapeEnum = (typeof ShapeEnum)[keyof typeof ShapeEnum]
}
