Version information serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| git_version | str | [optional] | |
| version | str |
from airflow_client.client.models.version_info import VersionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of VersionInfo from a JSON string
version_info_instance = VersionInfo.from_json(json)
# print the JSON string representation of the object
print(VersionInfo.to_json())
# convert the object into a dict
version_info_dict = version_info_instance.to_dict()
# create an instance of VersionInfo from a dict
version_info_from_dict = VersionInfo.from_dict(version_info_dict)