AuthToken
Properties
| Name |
Type |
Description |
Notes |
| token |
str |
|
[optional] [readonly] |
Example
from defectdojo_api_generated.models.auth_token import AuthToken
# TODO update the JSON string below
json = "{}"
# create an instance of AuthToken from a JSON string
auth_token_instance = AuthToken.from_json(json)
# print the JSON string representation of the object
print(AuthToken.to_json())
# convert the object into a dict
auth_token_dict = auth_token_instance.to_dict()
# create an instance of AuthToken from a dict
auth_token_from_dict = AuthToken.from_dict(auth_token_dict)
[Back to Model list] [Back to API list] [Back to README]