Skip to main content

SourceclassificationstatusAllOfCounts

A map containing numbers relevant to the source classification process

Properties

NameTypeDescriptionNotes
expectedinttotal number of source accounts[required]
receivedintnumber of accounts that have been sent for processing (should be the same as expected when all accounts are collected)[required]
completedintnumber of accounts that have been classified[required]
}

Example

from sailpoint.classify_source.models.sourceclassificationstatus_all_of_counts import SourceclassificationstatusAllOfCounts

sourceclassificationstatus_all_of_counts = SourceclassificationstatusAllOfCounts(
expected=1000,
received=800,
completed=500
)

[Back to top]