/** * 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'; import { ThresholdSignatureScheme } from './ThresholdSignatureScheme'; /** * * @export * @interface CreateRoomsWithoutWalletIdRequest */ export interface CreateRoomsWithoutWalletIdRequest { /** * * @type {RoomTypeEnum} * @memberof CreateRoomsWithoutWalletIdRequest */ roomType: RoomTypeEnum; /** * * @type {ThresholdSignatureScheme} * @memberof CreateRoomsWithoutWalletIdRequest */ thresholdSignatureScheme: ThresholdSignatureScheme; /** * Number of rooms to create * @type {number} * @memberof CreateRoomsWithoutWalletIdRequest */ roomCount?: number; } export declare function CreateRoomsWithoutWalletIdRequestFromJSON(json: any): CreateRoomsWithoutWalletIdRequest; export declare function CreateRoomsWithoutWalletIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRoomsWithoutWalletIdRequest; export declare function CreateRoomsWithoutWalletIdRequestToJSON(value?: CreateRoomsWithoutWalletIdRequest | null): any;