Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

ValidateTokenOutput.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

ValidateTokenOutput

Properties

Name Type Description Notes
expiration str [optional]
is_valid bool [optional]
last_rotate str [optional]
reason str [optional]
ttl int [optional]

Example

from akeyless.models.validate_token_output import ValidateTokenOutput

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

# convert the object into a dict
validate_token_output_dict = validate_token_output_instance.to_dict()
# create an instance of ValidateTokenOutput from a dict
validate_token_output_from_dict = ValidateTokenOutput.from_dict(validate_token_output_dict)

[Back to Model list] [Back to API list] [Back to README]