/** * 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 { BuildRegionalContainerTagsInner } from './BuildRegionalContainerTagsInner'; import type { BuildStatus } from './BuildStatus'; /** * A build represents a game server artifact and its associated metadata. * @export * @interface Build */ export interface Build { /** * 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 Build */ buildTag?: string | null; /** * * @type {Array} * @memberof Build * @deprecated */ regionalContainerTags: Array; /** * The size (in bytes) of the Docker image built by Hathora. * @type {number} * @memberof Build */ imageSize: number; /** * * @type {BuildStatus} * @memberof Build */ status: BuildStatus; /** * When the build was deleted. * @type {Date} * @memberof Build */ deletedAt: Date | null; /** * When [`RunBuild()`](https://hathora.dev/api#tag/BuildV2/operation/RunBuild) finished executing. * @type {Date} * @memberof Build */ finishedAt: Date | null; /** * When [`RunBuild()`](https://hathora.dev/api#tag/BuildV2/operation/RunBuild) is called. * @type {Date} * @memberof Build */ startedAt: Date | null; /** * When [`CreateBuild()`](https://hathora.dev/api#tag/BuildV2/operation/CreateBuild) is called. * @type {Date} * @memberof Build */ createdAt: Date; /** * UserId or email address for the user that created the build. * @type {string} * @memberof Build */ createdBy: string; /** * System generated id for a build. Increments by 1. * @type {number} * @memberof Build */ buildId: number; /** * System generated unique identifier for an application. * @type {string} * @memberof Build */ appId: string; } /** * Check if a given object implements the Build interface. */ export declare function instanceOfBuild(value: object): boolean; export declare function BuildFromJSON(json: any): Build; export declare function BuildFromJSONTyped(json: any, ignoreDiscriminator: boolean): Build; export declare function BuildToJSON(value?: Build | null): any;