/** * 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. */ /** * * @export * @interface InviteStatusPending */ export interface InviteStatusPending { /** * * @type {string} * @memberof InviteStatusPending */ type: InviteStatusPendingTypeEnum; } /** * @export */ export declare const InviteStatusPendingTypeEnum: { readonly Pending: "pending"; }; export type InviteStatusPendingTypeEnum = typeof InviteStatusPendingTypeEnum[keyof typeof InviteStatusPendingTypeEnum]; /** * Check if a given object implements the InviteStatusPending interface. */ export declare function instanceOfInviteStatusPending(value: object): boolean; export declare function InviteStatusPendingFromJSON(json: any): InviteStatusPending; export declare function InviteStatusPendingFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteStatusPending; export declare function InviteStatusPendingToJSON(value?: InviteStatusPending | null): any;