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