import { BillingTypeEnum } from './ressources/BillingTypeEnum';
import { ResourceTypeEnum } from './ressources/ResourceTypeEnum';
import { Price } from '../order/Price';
/** A structure describing the Resource's new price */
export interface ResourceNewPricesEntry {
    /**  */
    billingType: BillingTypeEnum;
    /**  */
    changed: boolean;
    /**  */
    name: string;
    /**  */
    newPrice: Price;
    /**  */
    oldPrice: Price;
    /**  */
    resourceType: ResourceTypeEnum;
}
//# sourceMappingURL=ResourceNewPricesEntry.d.ts.map