mirror of
https://github.com/openziti/zrok.git
synced 2025-06-05 17:37:00 +02:00
1.0 KiB
1.0 KiB
VersionInventory200Response
Properties
Name | Type | Description | Notes |
---|---|---|---|
controller_version | str | [optional] |
Example
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)