/** * 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. */ import type { UpgradeableBoosterType } from './UpgradeableBoosterType'; /** * * @export * @interface BoosterPrice */ export interface BoosterPrice { /** * * @type {UpgradeableBoosterType} * @memberof BoosterPrice */ type?: UpgradeableBoosterType; /** * * @type {number} * @memberof BoosterPrice */ level?: number; /** * * @type {number} * @memberof BoosterPrice */ price?: number; } /** * Check if a given object implements the BoosterPrice interface. */ export declare function instanceOfBoosterPrice(value: object): boolean; export declare function BoosterPriceFromJSON(json: any): BoosterPrice; export declare function BoosterPriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): BoosterPrice; export declare function BoosterPriceToJSON(value?: BoosterPrice | null): any;