mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.4 KiB
1.4 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-source-classification-status-all-of-counts | SourceClassificationStatusAllOfCounts | SourceClassificationStatusAllOfCounts | SourceClassificationStatusAllOfCounts | pythonsdk |
|
/tools/sdk/python/v2025/models/source-classification-status-all-of-counts |
|
SourceClassificationStatusAllOfCounts
A map containing numbers relevant to the source classification process
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| expected | int | total number of source accounts | [required] |
| received | int | number of accounts that have been sent for processing (should be the same as expected when all accounts are collected) | [required] |
| completed | int | number of accounts that have been classified | [required] |
| } |
Example
from sailpoint.v2025.models.source_classification_status_all_of_counts import SourceClassificationStatusAllOfCounts
source_classification_status_all_of_counts = SourceClassificationStatusAllOfCounts(
expected=1000,
received=800,
completed=500
)