/** * 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'; /** * An application object is the top level namespace for the game server. * @export * @interface Application */ export interface Application { /** * UserId or email address for the user that deleted the application. * @type {string} * @memberof Application */ deletedBy: string | null; /** * When the application was deleted. * @type {Date} * @memberof Application */ deletedAt: Date | null; /** * When the application was created. * @type {Date} * @memberof Application */ createdAt: Date; /** * UserId or email address for the user that created the application. * @type {string} * @memberof Application */ createdBy: string; /** * System generated unique identifier for an organization. Not guaranteed to have a specific format. * @type {string} * @memberof Application */ orgId: string; /** * * @type {AuthConfiguration} * @memberof Application */ authConfiguration: AuthConfiguration; /** * Secret that is used for identity and access management. * @type {string} * @memberof Application */ appSecret: string; /** * System generated unique identifier for an application. * @type {string} * @memberof Application */ appId: string; /** * Readable name for an application. Must be unique within an organization. * @type {string} * @memberof Application */ appName: string; } /** * Check if a given object implements the Application interface. */ export declare function instanceOfApplication(value: object): boolean; export declare function ApplicationFromJSON(json: any): Application; export declare function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Application; export declare function ApplicationToJSON(value?: Application | null): any;