github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/VersionConfig.md (about) 1 # VersionConfig 2 3 4 ## Properties 5 6 Name | Type | Description | Notes 7 ------------ | ------------- | ------------- | ------------- 8 **version** | **str** | | [optional] 9 **latest_version** | **str** | | [optional] 10 **upgrade_recommended** | **bool** | | [optional] 11 **upgrade_url** | **str** | | [optional] 12 13 ## Example 14 15 ```python 16 from lakefs_sdk.models.version_config import VersionConfig 17 18 # TODO update the JSON string below 19 json = "{}" 20 # create an instance of VersionConfig from a JSON string 21 version_config_instance = VersionConfig.from_json(json) 22 # print the JSON string representation of the object 23 print VersionConfig.to_json() 24 25 # convert the object into a dict 26 version_config_dict = version_config_instance.to_dict() 27 # create an instance of VersionConfig from a dict 28 version_config_form_dict = version_config.from_dict(version_config_dict) 29 ``` 30 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 31 32