/* 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 PeriodicalBoosterType = { TAPPING_GURU: 'TAPPING_GURU', FULL_CHARGE: 'FULL_CHARGE' } as const; export type PeriodicalBoosterType = typeof PeriodicalBoosterType[keyof typeof PeriodicalBoosterType]; export function PeriodicalBoosterTypeFromJSON(json: any): PeriodicalBoosterType { return PeriodicalBoosterTypeFromJSONTyped(json, false); } export function PeriodicalBoosterTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PeriodicalBoosterType { return json as PeriodicalBoosterType; } export function PeriodicalBoosterTypeToJSON(value?: PeriodicalBoosterType | null): any { return value as any; }