/** * 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 { Build } from './Build'; /** * * @export * @interface ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf */ export interface ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf { /** * * @type {Build} * @memberof ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf */ build: Build; } /** * Check if a given object implements the ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf interface. */ export declare function instanceOfApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf(value: object): boolean; export declare function ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOfFromJSON(json: any): ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf; export declare function ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf; export declare function ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOfToJSON(value?: ApplicationWithLatestDeploymentAndBuildAllOfDeploymentAllOf | null): any;