@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 352 B
TypeScript
import { Detail } from './Detail';
import { Price } from '../../order/Price';
/** Details of fees regardless of the consumption */
export interface FlatFee {
/** Detailed listing of all flat fees */
details: Detail[];
/** Total price of the flat fee part of associated plans */
totalPrice: Price;
}
//# sourceMappingURL=FlatFee.d.ts.map