Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

UscGetSecretOutput.md

File metadata and controls

33 lines (24 loc) · 1.08 KB

UscGetSecretOutput

Properties

Name Type Description Notes
binary_value bool [optional]
id str [optional]
metadata object [optional]
name str [optional]
value str [optional]

Example

from akeyless.models.usc_get_secret_output import UscGetSecretOutput

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

# convert the object into a dict
usc_get_secret_output_dict = usc_get_secret_output_instance.to_dict()
# create an instance of UscGetSecretOutput from a dict
usc_get_secret_output_from_dict = UscGetSecretOutput.from_dict(usc_get_secret_output_dict)

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