/** * 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 { PeriodicalBoosterType } from './PeriodicalBoosterType'; /** * * @export * @interface ActivateBoosterProps */ export interface ActivateBoosterProps { /** * * @type {PeriodicalBoosterType} * @memberof ActivateBoosterProps */ type?: PeriodicalBoosterType; } /** * Check if a given object implements the ActivateBoosterProps interface. */ export declare function instanceOfActivateBoosterProps(value: object): boolean; export declare function ActivateBoosterPropsFromJSON(json: any): ActivateBoosterProps; export declare function ActivateBoosterPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivateBoosterProps; export declare function ActivateBoosterPropsToJSON(value?: ActivateBoosterProps | null): any;