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