/** * 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'; /** * Connection details for an active process. * @export * @interface ExposedPort */ export interface ExposedPort { /** * * @type {TransportType} * @memberof ExposedPort */ transportType: TransportType; /** * * @type {number} * @memberof ExposedPort */ port: number; /** * * @type {string} * @memberof ExposedPort */ host: string; /** * * @type {string} * @memberof ExposedPort */ name: string; } /** * Check if a given object implements the ExposedPort interface. */ export declare function instanceOfExposedPort(value: object): boolean; export declare function ExposedPortFromJSON(json: any): ExposedPort; export declare function ExposedPortFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExposedPort; export declare function ExposedPortToJSON(value?: ExposedPort | null): any;