/** * 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. */ import type { OrgPermission } from './OrgPermission'; /** * * @export * @interface OrgInvitesPage */ export interface OrgInvitesPage { /** * * @type {Array} * @memberof OrgInvitesPage */ invites: Array; } /** * Check if a given object implements the OrgInvitesPage interface. */ export declare function instanceOfOrgInvitesPage(value: object): boolean; export declare function OrgInvitesPageFromJSON(json: any): OrgInvitesPage; export declare function OrgInvitesPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrgInvitesPage; export declare function OrgInvitesPageToJSON(value?: OrgInvitesPage | null): any;