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.v3.models.mfa_config_test_response import MfaConfigTestResponse

mfa_config_test_response = MfaConfigTestResponse(
state='SUCCESS',
error='MFA Method is disabled.'
)

[Back to top]