Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/TokenAuthResponse.md
2025-02-20 12:59:19 -05:00

850 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-token-auth-response TokenAuthResponse TokenAuthResponse TokenAuthResponse pythonsdk
python
Python
sdk
TokenAuthResponse
BetaTokenAuthResponse
/tools/sdk/python/beta/models/token-auth-response
SDK
Software Development Kit
TokenAuthResponse
BetaTokenAuthResponse

TokenAuthResponse

Properties

Name Type Description Notes
status Enum [ 'PENDING', 'SUCCESS', 'FAILED', 'LOCKOUT', 'NOT_ENOUGH_DATA' ] MFA Authentication status [optional]
}

Example

from sailpoint.beta.models.token_auth_response import TokenAuthResponse

token_auth_response = TokenAuthResponse(
status='PENDING'
)

[Back to top]