/** * 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 InviteStatusRejected */ export interface InviteStatusRejected { /** * System generated unique identifier for a user. Not guaranteed to have a specific format. * @type {string} * @memberof InviteStatusRejected */ userId: string; /** * * @type {string} * @memberof InviteStatusRejected */ type: InviteStatusRejectedTypeEnum; } /** * @export */ export declare const InviteStatusRejectedTypeEnum: { readonly Rejected: "rejected"; }; export type InviteStatusRejectedTypeEnum = typeof InviteStatusRejectedTypeEnum[keyof typeof InviteStatusRejectedTypeEnum]; /** * Check if a given object implements the InviteStatusRejected interface. */ export declare function instanceOfInviteStatusRejected(value: object): boolean; export declare function InviteStatusRejectedFromJSON(json: any): InviteStatusRejected; export declare function InviteStatusRejectedFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteStatusRejected; export declare function InviteStatusRejectedToJSON(value?: InviteStatusRejected | null): any;