Alokai

OrderApprovalDecision

The order approval decision. The approval decision field is mandatory, and the approval comment field is mandatory if the decision is 'rejected'. OrderApprovalDecision

export interface OrderApprovalDecision {
	'comment'?: string;
	'decision': string;
}

Properties

NameRequiredTypeDescription
commentOptionalstringAny comments the approver (or the workflow system) adds when approving/rejecting an order. {string} OrderApprovalDecision
decisionRequiredstringDecision from the approver when approving/rejecting an order. Typical decisions are: APPROVE, REJECT {string} OrderApprovalDecision

On this page