TokenGenerateResponse
Properties
Name |
Type |
Description |
Notes |
token |
str |
The token to use in the Authorization header with the format \"Bearer {token}\" |
|
Example
from rxinferclient.models.token_generate_response import TokenGenerateResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TokenGenerateResponse from a JSON string
token_generate_response_instance = TokenGenerateResponse.from_json(json)
# print the JSON string representation of the object
print(TokenGenerateResponse.to_json())
# convert the object into a dict
token_generate_response_dict = token_generate_response_instance.to_dict()
# create an instance of TokenGenerateResponse from a dict
token_generate_response_from_dict = TokenGenerateResponse.from_dict(token_generate_response_dict)
[Back to Model list] [Back to API list] [Back to README]