Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 934 Bytes

File metadata and controls

32 lines (23 loc) · 934 Bytes

Technology

Properties

Name Type Description Notes
id float ID
name str Name
version str Version
display_name str Display name

Example

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)

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