Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

File metadata and controls

31 lines (22 loc) · 1 KB

UpdateSecretResponse

Response body for PUT /secrets/{name}

Properties

Name Type Description Notes
name str
updated_at datetime

Example

from hotdata.models.update_secret_response import UpdateSecretResponse

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

# convert the object into a dict
update_secret_response_dict = update_secret_response_instance.to_dict()
# create an instance of UpdateSecretResponse from a dict
update_secret_response_from_dict = UpdateSecretResponse.from_dict(update_secret_response_dict)

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