/** * 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 UpgradeBoosterProps */ export interface UpgradeBoosterProps { /** * * @type {UpgradeableBoosterType} * @memberof UpgradeBoosterProps */ type?: UpgradeableBoosterType; } /** * Check if a given object implements the UpgradeBoosterProps interface. */ export declare function instanceOfUpgradeBoosterProps(value: object): boolean; export declare function UpgradeBoosterPropsFromJSON(json: any): UpgradeBoosterProps; export declare function UpgradeBoosterPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpgradeBoosterProps; export declare function UpgradeBoosterPropsToJSON(value?: UpgradeBoosterProps | null): any;