/** * 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 { Region } from './Region'; /** * * @export * @interface PingEndpointsInner */ export interface PingEndpointsInner { /** * * @type {number} * @memberof PingEndpointsInner */ port: number; /** * * @type {string} * @memberof PingEndpointsInner */ host: string; /** * * @type {Region} * @memberof PingEndpointsInner */ region: Region; } /** * Check if a given object implements the PingEndpointsInner interface. */ export declare function instanceOfPingEndpointsInner(value: object): boolean; export declare function PingEndpointsInnerFromJSON(json: any): PingEndpointsInner; export declare function PingEndpointsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): PingEndpointsInner; export declare function PingEndpointsInnerToJSON(value?: PingEndpointsInner | null): any;