/**
 * 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 ImportMenuItemRequest {
	name: string
	description?: string
	price: number
	currency: string
	amount: number
	unit: ImportMenuItemRequest.UnitEnum
	categories: Array<string>
}
export namespace ImportMenuItemRequest {
	export const UnitEnum = {
		ml: 'ml',
		l: 'l',
		mg: 'mg',
		g: 'g',
		kg: 'kg',
		pcs: 'pcs',
	} as const
	export type UnitEnum = (typeof UnitEnum)[keyof typeof UnitEnum]
}
