zrok/sdk/python/src/docs/VersionInventory200Response.md
2025-03-05 10:07:01 -05:00

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)

[Back to Model list] [Back to API list] [Back to README]