/** * 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 InviteStatusRescinded */ export interface InviteStatusRescinded { /** * System generated unique identifier for a user. Not guaranteed to have a specific format. * @type {string} * @memberof InviteStatusRescinded */ rescindedBy: string; /** * System generated unique identifier for a user. Not guaranteed to have a specific format. * @type {string} * @memberof InviteStatusRescinded */ userId?: string; /** * * @type {string} * @memberof InviteStatusRescinded */ type: InviteStatusRescindedTypeEnum; } /** * @export */ export declare const InviteStatusRescindedTypeEnum: { readonly Rescinded: "rescinded"; }; export type InviteStatusRescindedTypeEnum = typeof InviteStatusRescindedTypeEnum[keyof typeof InviteStatusRescindedTypeEnum]; /** * Check if a given object implements the InviteStatusRescinded interface. */ export declare function instanceOfInviteStatusRescinded(value: object): boolean; export declare function InviteStatusRescindedFromJSON(json: any): InviteStatusRescinded; export declare function InviteStatusRescindedFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteStatusRescinded; export declare function InviteStatusRescindedToJSON(value?: InviteStatusRescinded | null): any;