/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RoomTypeEnum } from './RoomTypeEnum'; /** * * @export * @interface CreateRoomsRequest */ export interface CreateRoomsRequest { /** * * @type {RoomTypeEnum} * @memberof CreateRoomsRequest */ roomType: RoomTypeEnum; /** * Number of rooms to create * @type {number} * @memberof CreateRoomsRequest */ roomCount?: number; } export declare function CreateRoomsRequestFromJSON(json: any): CreateRoomsRequest; export declare function CreateRoomsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRoomsRequest; export declare function CreateRoomsRequestToJSON(value?: CreateRoomsRequest | null): any;