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