Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 957 Bytes

CustomTargetDetails.md

File metadata and controls

29 lines (20 loc) · 957 Bytes

CustomTargetDetails

Properties

Name Type Description Notes
payload str [optional]

Example

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]