/**
 * 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.
 */
import { CustomerData } from './customerData'

export interface CreateReservationRequest {
	noOfPersons: number
	startDate: Date
	endDate: Date
	customerData: CustomerData
	comment?: string
	tableId?: string
	tableCombinationId?: string
}
