/** * 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. */ /** * A plan defines how much CPU and memory is required to run an instance of your game server. * * `tiny`: shared core, 1gb memory * * `small`: 1 core, 2gb memory * * `medium`: 2 core, 4gb memory * * `large`: 4 core, 8gb memory * @export */ export declare const PlanName: { readonly Tiny: "tiny"; readonly Small: "small"; readonly Medium: "medium"; readonly Large: "large"; }; export type PlanName = typeof PlanName[keyof typeof PlanName]; export declare function PlanNameFromJSON(json: any): PlanName; export declare function PlanNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlanName; export declare function PlanNameToJSON(value?: PlanName | null): any;