| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | ID | |
| name | str | Name | |
| version | str | Version | |
| display_name | str | Display name |
from watchtowr_api_sdk.models.technology import Technology
# TODO update the JSON string below
json = "{}"
# create an instance of Technology from a JSON string
technology_instance = Technology.from_json(json)
# print the JSON string representation of the object
print(Technology.to_json())
# convert the object into a dict
technology_dict = technology_instance.to_dict()
# create an instance of Technology from a dict
technology_from_dict = Technology.from_dict(technology_dict)