Name | Type | Description | Notes |
---|---|---|---|
namespace_uri | str | [optional] | |
unit_id | int | [optional] | |
display_name | LocalizedText | [optional] | |
description | LocalizedText | [optional] |
from opcua_webapi.models.eu_information import EUInformation
# TODO update the JSON string below
json = "{}"
# create an instance of EUInformation from a JSON string
eu_information_instance = EUInformation.from_json(json)
# print the JSON string representation of the object
print(EUInformation.to_json())
# convert the object into a dict
eu_information_dict = eu_information_instance.to_dict()
# create an instance of EUInformation from a dict
eu_information_from_dict = EUInformation.from_dict(eu_information_dict)