/**
 * 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 { EmailTemplateSettings } from './emailTemplateSettings'
import { ReservationSettings } from './reservationSettings'
import { EmailSettings } from './emailSettings'
import { FeaturesSettings } from './featuresSettings'
import { ScheduleSettings } from './scheduleSettings'
import { RestaurantSettingsResponse } from './restaurantSettingsResponse'
import { CustomerAppSettings } from './customerAppSettings'
import { BillingSettings } from './billingSettings'
import { KitchenSettings } from './kitchenSettings'

export interface SettingsResponse {
	customerApp: CustomerAppSettings
	schedule?: ScheduleSettings
	reservation: ReservationSettings
	features: FeaturesSettings
	restaurant: RestaurantSettingsResponse
	kitchen: KitchenSettings
	emailTemplates?: EmailTemplateSettings
	billing: BillingSettings
	email?: EmailSettings
}
