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