The component that is responsible for the event.
| Name | Type | Description | Notes |
|---|---|---|---|
| component | str | The name of the component that is responsible for the event. |
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)