mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.1 KiB
1.1 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-mfa-config-test-response | MfaConfigTestResponse | MfaConfigTestResponse | MfaConfigTestResponse | pythonsdk |
|
/tools/sdk/python/v2025/models/mfa-config-test-response |
|
MfaConfigTestResponse
Response model for configuration test of a given MFA method
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| state | Enum [ 'SUCCESS', 'FAILED' ] | The configuration test result. | [optional] [readonly] |
| error | str | The error message to indicate the failure of configuration test. | [optional] [readonly] |
| } |
Example
from sailpoint.v2025.models.mfa_config_test_response import MfaConfigTestResponse
mfa_config_test_response = MfaConfigTestResponse(
state='SUCCESS',
error='MFA Method is disabled.'
)