Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

EUInformation.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

EUInformation

Properties

Name Type Description Notes
namespace_uri str [optional]
unit_id int [optional]
display_name LocalizedText [optional]
description LocalizedText [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]