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