Name |
Type |
Description |
Notes |
token |
str |
|
[optional] |
from akeyless.models.uid_generate_token_output import UidGenerateTokenOutput
# TODO update the JSON string below
json = "{}"
# create an instance of UidGenerateTokenOutput from a JSON string
uid_generate_token_output_instance = UidGenerateTokenOutput.from_json(json)
# print the JSON string representation of the object
print(UidGenerateTokenOutput.to_json())
# convert the object into a dict
uid_generate_token_output_dict = uid_generate_token_output_instance.to_dict()
# create an instance of UidGenerateTokenOutput from a dict
uid_generate_token_output_from_dict = UidGenerateTokenOutput.from_dict(uid_generate_token_output_dict)
[Back to Model list] [Back to API list] [Back to README]