Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

ExternalLogUrlResponse

Response for the external log URL endpoint.

Properties

Name Type Description Notes
url str

Example

from airflow_client.client.models.external_log_url_response import ExternalLogUrlResponse

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

# convert the object into a dict
external_log_url_response_dict = external_log_url_response_instance.to_dict()
# create an instance of ExternalLogUrlResponse from a dict
external_log_url_response_from_dict = ExternalLogUrlResponse.from_dict(external_log_url_response_dict)

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