interface Approval {
    Links?: SelfLink;
    approvers?: Approver[];
    canAnswerApproval?: boolean;
    completedDate?: Date;
    createdDate?: Date;
    finalDecision?: string;
    id?: string;
    name?: string;
}

Properties

Links?: SelfLink
approvers?: Approver[]

Detailed list of the users who must provide a response to the approval.

canAnswerApproval?: boolean

Indicates whether the user making the request is one of the approvers and can respond to the approval (true) or not (false).

completedDate?: Date
createdDate?: Date
finalDecision?: string

Outcome of the approval, based on the approvals provided by all approvers.

id?: string

ID of the approval.

name?: string

Description of the approval being sought or provided.