Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 948 Bytes

File metadata and controls

30 lines (21 loc) · 948 Bytes

EventSource

The component that is responsible for the event.

Properties

Name Type Description Notes
component str The name of the component that is responsible for the event.

Example

from flightctl.models.event_source import EventSource

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

# convert the object into a dict
event_source_dict = event_source_instance.to_dict()
# create an instance of EventSource from a dict
event_source_from_dict = EventSource.from_dict(event_source_dict)

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