Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

EventForwarderDeleteOutput.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

EventForwarderDeleteOutput

Properties

Name Type Description Notes
event_forwarder_name str [optional]

Example

from akeyless.models.event_forwarder_delete_output import EventForwarderDeleteOutput

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

# convert the object into a dict
event_forwarder_delete_output_dict = event_forwarder_delete_output_instance.to_dict()
# create an instance of EventForwarderDeleteOutput from a dict
event_forwarder_delete_output_from_dict = EventForwarderDeleteOutput.from_dict(event_forwarder_delete_output_dict)

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