Name |
Type |
Description |
Notes |
payload |
str |
|
[optional] |
from akeyless.models.custom_target_details import CustomTargetDetails
# TODO update the JSON string below
json = "{}"
# create an instance of CustomTargetDetails from a JSON string
custom_target_details_instance = CustomTargetDetails.from_json(json)
# print the JSON string representation of the object
print(CustomTargetDetails.to_json())
# convert the object into a dict
custom_target_details_dict = custom_target_details_instance.to_dict()
# create an instance of CustomTargetDetails from a dict
custom_target_details_from_dict = CustomTargetDetails.from_dict(custom_target_details_dict)
[Back to Model list] [Back to API list] [Back to README]