/* tslint:disable */ /* eslint-disable */ /** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * 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 const UpgradeableBoosterType = { ENERGY_EXPANSION: 'ENERGY_EXPANSION', MULTITAP: 'MULTITAP', RECHARGE_ACCELERATOR: 'RECHARGE_ACCELERATOR' } as const; export type UpgradeableBoosterType = typeof UpgradeableBoosterType[keyof typeof UpgradeableBoosterType]; export function UpgradeableBoosterTypeFromJSON(json: any): UpgradeableBoosterType { return UpgradeableBoosterTypeFromJSONTyped(json, false); } export function UpgradeableBoosterTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpgradeableBoosterType { return json as UpgradeableBoosterType; } export function UpgradeableBoosterTypeToJSON(value?: UpgradeableBoosterType | null): any { return value as any; }