Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

CreateSecretRequest

Request body for POST /secrets

Properties

Name Type Description Notes
name str
value str

Example

from hotdata.models.create_secret_request import CreateSecretRequest

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

# convert the object into a dict
create_secret_request_dict = create_secret_request_instance.to_dict()
# create an instance of CreateSecretRequest from a dict
create_secret_request_from_dict = CreateSecretRequest.from_dict(create_secret_request_dict)

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