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