@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 517 B
TypeScript
import { OrderDetailTypeEnum } from '../order/OrderDetailTypeEnum';
import { Price } from '../order/Price';
/** Information about a Bill entry */
export interface OrderDetail {
/** */
cancelled: boolean;
/** */
description: string;
/** */
detailType?: OrderDetailTypeEnum;
/** */
domain: string;
/** */
orderDetailId: number;
/** */
quantity: string;
/** */
totalPrice: Price;
/** */
unitPrice: Price;
}
//# sourceMappingURL=OrderDetail.d.ts.map