/** * 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. */ /** * * @export * @interface DeploymentV2EnvInner */ export interface DeploymentV2EnvInner { /** * * @type {string} * @memberof DeploymentV2EnvInner */ value: string; /** * * @type {string} * @memberof DeploymentV2EnvInner */ name: string; } /** * Check if a given object implements the DeploymentV2EnvInner interface. */ export declare function instanceOfDeploymentV2EnvInner(value: object): boolean; export declare function DeploymentV2EnvInnerFromJSON(json: any): DeploymentV2EnvInner; export declare function DeploymentV2EnvInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeploymentV2EnvInner; export declare function DeploymentV2EnvInnerToJSON(value?: DeploymentV2EnvInner | null): any;