UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 523 B
import { PurchaseOrderTypeEnum } from './PurchaseOrderTypeEnum'; /** Purchase order update payload */ export interface Update { /** 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=Update.d.ts.map