| # VersionInfo |
| |
| Version information serializer for responses. |
| |
| ## Properties |
| |
| Name | Type | Description | Notes |
| ------------ | ------------- | ------------- | ------------- |
| **git_version** | **str** | | [optional] |
| **version** | **str** | | |
| |
| ## Example |
| |
| ```python |
| 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) |
| ``` |
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
| |
| |