/** * 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 { TransportType } from './TransportType'; /** * A container port object represents the transport configruations for how your server will listen. * @export * @interface ContainerPort */ export interface ContainerPort { /** * * @type {TransportType} * @memberof ContainerPort */ transportType: TransportType; /** * * @type {number} * @memberof ContainerPort */ port: number; /** * Readable name for the port. * @type {string} * @memberof ContainerPort */ name: string; } /** * Check if a given object implements the ContainerPort interface. */ export declare function instanceOfContainerPort(value: object): boolean; export declare function ContainerPortFromJSON(json: any): ContainerPort; export declare function ContainerPortFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerPort; export declare function ContainerPortToJSON(value?: ContainerPort | null): any;