/** * 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 InviteStatusAccepted */ export interface InviteStatusAccepted { /** * System generated unique identifier for a user. Not guaranteed to have a specific format. * @type {string} * @memberof InviteStatusAccepted */ userId: string; /** * * @type {string} * @memberof InviteStatusAccepted */ type: InviteStatusAcceptedTypeEnum; } /** * @export */ export declare const InviteStatusAcceptedTypeEnum: { readonly Accepted: "accepted"; }; export type InviteStatusAcceptedTypeEnum = typeof InviteStatusAcceptedTypeEnum[keyof typeof InviteStatusAcceptedTypeEnum]; /** * Check if a given object implements the InviteStatusAccepted interface. */ export declare function instanceOfInviteStatusAccepted(value: object): boolean; export declare function InviteStatusAcceptedFromJSON(json: any): InviteStatusAccepted; export declare function InviteStatusAcceptedFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteStatusAccepted; export declare function InviteStatusAcceptedToJSON(value?: InviteStatusAccepted | null): any;