/** * 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 */ export declare const OrgTokenStatus: { readonly Active: "active"; readonly Revoked: "revoked"; }; export type OrgTokenStatus = typeof OrgTokenStatus[keyof typeof OrgTokenStatus]; export declare function OrgTokenStatusFromJSON(json: any): OrgTokenStatus; export declare function OrgTokenStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrgTokenStatus; export declare function OrgTokenStatusToJSON(value?: OrgTokenStatus | null): any;