Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 917 Bytes

RefreshKeyOutput.md

File metadata and controls

29 lines (20 loc) · 917 Bytes

RefreshKeyOutput

Properties

Name Type Description Notes
result str [optional]

Example

from akeyless.models.refresh_key_output import RefreshKeyOutput

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

# convert the object into a dict
refresh_key_output_dict = refresh_key_output_instance.to_dict()
# create an instance of RefreshKeyOutput from a dict
refresh_key_output_from_dict = RefreshKeyOutput.from_dict(refresh_key_output_dict)

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