Skip to main content

Mfaconfigtestresponse

Response model for configuration test of a given MFA method

Properties

NameTypeDescriptionNotes
stateEnum [ 'SUCCESS', 'FAILED' ]The configuration test result.[optional] [readonly]
errorstrThe error message to indicate the failure of configuration test.[optional] [readonly]
}

Example

from sailpoint.mfa_configuration.models.mfaconfigtestresponse import Mfaconfigtestresponse

mfaconfigtestresponse = Mfaconfigtestresponse(
state='SUCCESS',
error='MFA Method is disabled.'
)

[Back to top]