@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 404 B
TypeScript
import { Price } from '../order/Price';
import { BillStatusEnum } from './BillStatusEnum';
/** Previous tollfree bill */
export interface HistoryTollfreeConsumption {
/** date of the bill */
date: string;
/** the amount which is paid by the called number */
price: Price;
/** status of the bill */
status: BillStatusEnum;
}
//# sourceMappingURL=HistoryTollfreeConsumption.d.ts.map