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