/** * 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 CreateBuildRequest */ export interface CreateBuildRequest { /** * Tag to associate an external version with a build. It is accessible via [`GetBuildInfo()`](https://hathora.dev/api#tag/BuildV1/operation/GetBuildInfo). * @type {string} * @memberof CreateBuildRequest */ buildTag?: string; } /** * Check if a given object implements the CreateBuildRequest interface. */ export declare function instanceOfCreateBuildRequest(value: object): boolean; export declare function CreateBuildRequestFromJSON(json: any): CreateBuildRequest; export declare function CreateBuildRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBuildRequest; export declare function CreateBuildRequestToJSON(value?: CreateBuildRequest | null): any;