/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * 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 { AuthConfiguration } from './AuthConfiguration'; import type { Deployment } from './Deployment'; /** * * @export * @interface ApplicationWithDeployment */ export interface ApplicationWithDeployment { /** * Email address for the user that deleted the application. * @type {string} * @memberof ApplicationWithDeployment */ deletedBy: string | null; /** * When the application was deleted. * @type {Date} * @memberof ApplicationWithDeployment */ deletedAt: Date | null; /** * When the application was created. * @type {Date} * @memberof ApplicationWithDeployment */ createdAt: Date; /** * Email address for the user that deleted the application. * @type {string} * @memberof ApplicationWithDeployment */ createdBy: string; /** * System generated unique identifier for an organization. * @type {string} * @memberof ApplicationWithDeployment */ orgId: string; /** * * @type {AuthConfiguration} * @memberof ApplicationWithDeployment */ authConfiguration: AuthConfiguration; /** * Secret that is used for identity and access management. * @type {string} * @memberof ApplicationWithDeployment */ appSecret: string; /** * System generated unique identifier for an application. * @type {string} * @memberof ApplicationWithDeployment */ appId: string; /** * Readable name for an application. Must be unique within an organization. * @type {string} * @memberof ApplicationWithDeployment */ appName: string; /** * * @type {Deployment} * @memberof ApplicationWithDeployment */ deployment: Deployment; } /** * Check if a given object implements the ApplicationWithDeployment interface. */ export declare function instanceOfApplicationWithDeployment(value: object): boolean; export declare function ApplicationWithDeploymentFromJSON(json: any): ApplicationWithDeployment; export declare function ApplicationWithDeploymentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationWithDeployment; export declare function ApplicationWithDeploymentToJSON(value?: ApplicationWithDeployment | null): any;