mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: beta-send-token-response
|
||||
title: SendTokenResponse
|
||||
pagination_label: SendTokenResponse
|
||||
sidebar_label: SendTokenResponse
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SendTokenResponse', 'BetaSendTokenResponse']
|
||||
slug: /tools/sdk/python/beta/models/send-token-response
|
||||
tags: ['SDK', 'Software Development Kit', 'SendTokenResponse', 'BetaSendTokenResponse']
|
||||
---
|
||||
|
||||
# SendTokenResponse
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**request_id** | **str** | The token request ID | [optional]
|
||||
**status** | **Enum** [ 'SUCCESS', 'FAILED' ] | Status of sending token | [optional]
|
||||
**error_message** | **str** | Error messages from token send request | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.send_token_response import SendTokenResponse
|
||||
|
||||
send_token_response = SendTokenResponse(
|
||||
request_id='089899f13a8f4da7824996191587bab9',
|
||||
status='SUCCESS',
|
||||
error_message='Unable to sent text message'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user