UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 526 B
import { PurchaseOrderTypeEnum } from './PurchaseOrderTypeEnum'; /** Purchase order creation payload */ export interface Creation { /** Active */ active?: boolean; /** Billing Group identifier */ billingGroupId?: number; /** Description */ description?: string; /** End date */ endDate?: string; /** Reference */ reference: string; /** Start date */ startDate: string; /** Type of a purchase order */ type: PurchaseOrderTypeEnum; } //# sourceMappingURL=Creation.d.ts.map