EUInformation

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namespace_uristr[optional]
unit_idint[optional] [default to 0]
display_nameLocalizedText[optional]
descriptionLocalizedText[optional]

Example

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)

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