blob: bce0a0d8245d7da52ac67a01c850af5bf229cf16 [file] [log] [blame] [view]
# ExternalLogUrlResponse
Response for the external log URL endpoint.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**url** | **str** | |
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)