Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.22 KB

File metadata and controls

37 lines (28 loc) · 1.22 KB

DagVersionResponse

Dag Version serializer for responses.

Properties

Name Type Description Notes
bundle_name str [optional]
bundle_url str [optional]
bundle_version str [optional]
created_at datetime
dag_display_name str
dag_id str
id UUID
version_number int

Example

from airflow_client.client.models.dag_version_response import DagVersionResponse

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

# convert the object into a dict
dag_version_response_dict = dag_version_response_instance.to_dict()
# create an instance of DagVersionResponse from a dict
dag_version_response_from_dict = DagVersionResponse.from_dict(dag_version_response_dict)

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