Name |
Type |
Description |
Notes |
target_id |
int |
|
[optional] |
from akeyless.models.update_db_target_output import UpdateDBTargetOutput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDBTargetOutput from a JSON string
update_db_target_output_instance = UpdateDBTargetOutput.from_json(json)
# print the JSON string representation of the object
print(UpdateDBTargetOutput.to_json())
# convert the object into a dict
update_db_target_output_dict = update_db_target_output_instance.to_dict()
# create an instance of UpdateDBTargetOutput from a dict
update_db_target_output_from_dict = UpdateDBTargetOutput.from_dict(update_db_target_output_dict)
[Back to Model list] [Back to API list] [Back to README]