@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
28 lines • 760 B
TypeScript
import { StatusEnum } from './StatusEnum';
import { PurchaseOrderTypeEnum } from './PurchaseOrderTypeEnum';
/** Purchase Order */
export interface PurchaseOrder {
/** Active */
active?: boolean;
/** Billing Group identifier */
billingGroupId?: number;
/** Creation date */
creationDate: string;
/** Description */
description?: string;
/** End date */
endDate?: string;
/** Purchase Order identifier */
id: number;
/** Last update date */
lastUpdate: string;
/** Reference */
reference: string;
/** Start date */
startDate: string;
/** Status */
status: StatusEnum;
/** Type of a purchase order */
type: PurchaseOrderTypeEnum;
}
//# sourceMappingURL=PurchaseOrder.d.ts.map