@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 518 B
TypeScript
import { Period } from '../usage/Period';
import { Price } from '../../order/Price';
/** Fee detail */
export interface Detail {
/** The plan id */
id: string;
/** Plan period */
period: Period;
/** Name of the plan */
planName?: string;
/** The plan size (ex: number of instances) */
size: number;
/** Total price of the plan, computed from size and unit price */
totalPrice: Price;
/** Unit price of the plan */
unitPrice: Price;
}
//# sourceMappingURL=Detail.d.ts.map