/** * Hathora Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CreateAppRequestAuthConfiguration } from './CreateAppRequestAuthConfiguration'; /** * * @export * @interface CreateAppRequest */ export interface CreateAppRequest { /** * * @type {CreateAppRequestAuthConfiguration} * @memberof CreateAppRequest */ authConfiguration: CreateAppRequestAuthConfiguration; /** * * @type {string} * @memberof CreateAppRequest */ appName: string; } /** * Check if a given object implements the CreateAppRequest interface. */ export declare function instanceOfCreateAppRequest(value: object): boolean; export declare function CreateAppRequestFromJSON(json: any): CreateAppRequest; export declare function CreateAppRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAppRequest; export declare function CreateAppRequestToJSON(value?: CreateAppRequest | null): any;