Skip to main content

ProcessingDetails

Properties

NameTypeDescriptionNotes
var_datedatetimeA date-time in ISO-8601 format[optional]
stagestr[optional]
retry_countint[optional]
stack_tracestr[optional]
messagestr[optional]
}

Example

from sailpoint.v3.models.processing_details import ProcessingDetails

processing_details = ProcessingDetails(
var_date='2018-06-25T20:22:28.104Z',
stage='In Process',
retry_count=0,
stack_trace='<stack trace>',
message='<message>'
)

[Back to top]