TriggererInfoResponse

Triggerer info serializer for responses.

Properties

NameTypeDescriptionNotes
latest_triggerer_heartbeatstr[optional]
statusstr[optional]

Example

from airflow_client.client.models.triggerer_info_response import TriggererInfoResponse

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

# convert the object into a dict
triggerer_info_response_dict = triggerer_info_response_instance.to_dict()
# create an instance of TriggererInfoResponse from a dict
triggerer_info_response_from_dict = TriggererInfoResponse.from_dict(triggerer_info_response_dict)

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