interface ReleaseApprovalHistory {
    approver?: IdentityRef;
    changedBy?: IdentityRef;
    comments?: string;
    createdOn?: Date;
    modifiedOn?: Date;
    revision?: number;
}

Properties

approver?: IdentityRef

Identity of the approver.

changedBy?: IdentityRef

Identity of the object who changed approval.

comments?: string

Approval history comments.

createdOn?: Date

Time when this approval created.

modifiedOn?: Date

Time when this approval modified.

revision?: number

Approval history revision.