SchedulerInfoResponse

Scheduler info serializer for responses.

Properties

NameTypeDescriptionNotes
latest_scheduler_heartbeatstr[optional]
statusstr[optional]

Example

from airflow_client.client.models.scheduler_info_response import SchedulerInfoResponse

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

# convert the object into a dict
scheduler_info_response_dict = scheduler_info_response_instance.to_dict()
# create an instance of SchedulerInfoResponse from a dict
scheduler_info_response_from_dict = SchedulerInfoResponse.from_dict(scheduler_info_response_dict)

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