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