ApprovalSummary
Properties
Name | Type | Description | Notes |
---|---|---|---|
pending | int | The number of pending access requests approvals. | [optional] |
approved | int | The number of approved access requests approvals. | [optional] |
rejected | int | The number of rejected access requests approvals. | [optional] |
} |
Example
from sailpoint.v3.models.approval_summary import ApprovalSummary
approval_summary = ApprovalSummary(
pending=0,
approved=0,
rejected=0
)