mirror of
https://github.com/openziti/zrok.git
synced 2025-06-07 02:17:57 +02:00
30 lines
1.0 KiB
Markdown
30 lines
1.0 KiB
Markdown
# VersionInventory200Response
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**controller_version** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from zrok_api.models.version_inventory200_response import VersionInventory200Response
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of VersionInventory200Response from a JSON string
|
|
version_inventory200_response_instance = VersionInventory200Response.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(VersionInventory200Response.to_json())
|
|
|
|
# convert the object into a dict
|
|
version_inventory200_response_dict = version_inventory200_response_instance.to_dict()
|
|
# create an instance of VersionInventory200Response from a dict
|
|
version_inventory200_response_from_dict = VersionInventory200Response.from_dict(version_inventory200_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)
|
|
|
|
|