Skip to main content

TokenAuthResponse

Properties

NameTypeDescriptionNotes
statusEnum [ 'PENDING', 'SUCCESS', 'FAILED', 'LOCKOUT', 'NOT_ENOUGH_DATA' ]MFA Authentication status[optional]
}

Example

from sailpoint.v3.models.token_auth_response import TokenAuthResponse

token_auth_response = TokenAuthResponse(
status='PENDING'
)

[Back to top]