Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 826 Bytes

File metadata and controls

28 lines (20 loc) · 826 Bytes

SecretData

Properties

Name Type Description Notes
secret str

Example

from openapi_client.models.secret_data import SecretData

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

# convert the object into a dict
secret_data_dict = secret_data_instance.to_dict()
# create an instance of SecretData from a dict
secret_data_from_dict = SecretData.from_dict(secret_data_dict)

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