/** * 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 { OrganizationInviteStatus } from './OrganizationInviteStatus'; /** * * @export * @interface OrgPermission */ export interface OrgPermission { /** * * @type {Date} * @memberof OrgPermission */ updatedAt: Date; /** * * @type {Date} * @memberof OrgPermission */ createdAt: Date; /** * * @type {OrganizationInviteStatus} * @memberof OrgPermission */ status: OrganizationInviteStatus; /** * * @type {string} * @memberof OrgPermission */ userEmail: string; /** * System generated unique identifier for a user. Not guaranteed to have a specific format. * @type {string} * @memberof OrgPermission */ invitedBy: string; /** * System generated unique identifier for an organization. Not guaranteed to have a specific format. * @type {string} * @memberof OrgPermission */ orgId: string; } /** * Check if a given object implements the OrgPermission interface. */ export declare function instanceOfOrgPermission(value: object): boolean; export declare function OrgPermissionFromJSON(json: any): OrgPermission; export declare function OrgPermissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrgPermission; export declare function OrgPermissionToJSON(value?: OrgPermission | null): any;