/**
 * 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 UpdateItemsStateRequest {
	itemIds: Array<string>
	state: UpdateItemsStateRequest.StateEnum
}
export namespace UpdateItemsStateRequest {
	export const StateEnum = {
		pending: 'pending',
		ready_to_cook: 'ready_to_cook',
		cooking: 'cooking',
		ready_to_serve: 'ready_to_serve',
		served: 'served',
		done: 'done',
		rejected: 'rejected',
	} as const
	export type StateEnum = (typeof StateEnum)[keyof typeof StateEnum]
}
