Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

SchedulerInfoResponse

Scheduler info serializer for responses.

Properties

Name Type Description Notes
latest_scheduler_heartbeat str [optional]
status str [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]