Skip to content

TokenResponse

Properties

Name Type Description Notes
token str

Example

from deepsearch.cps.apis.public_v2.models.token_response import TokenResponse

# TODO update the JSON string below
json = "{}"
# create an instance of TokenResponse from a JSON string
token_response_instance = TokenResponse.from_json(json)
# print the JSON string representation of the object
print(TokenResponse.to_json())

# convert the object into a dict
token_response_dict = token_response_instance.to_dict()
# create an instance of TokenResponse from a dict
token_response_form_dict = token_response.from_dict(token_response_dict)
[Back to Model list] [Back to API list] [Back to README]