ExtensionObject

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
ua_type_idstr[optional]
ua_encodingint[optional]
ua_bodybytearray[optional]

Example

from opcua_webapi.models.extension_object import ExtensionObject

# TODO update the JSON string below
json = "{}"
# create an instance of ExtensionObject from a JSON string
extension_object_instance = ExtensionObject.from_json(json)
# print the JSON string representation of the object
print(ExtensionObject.to_json())

# convert the object into a dict
extension_object_dict = extension_object_instance.to_dict()
# create an instance of ExtensionObject from a dict
extension_object_from_dict = ExtensionObject.from_dict(extension_object_dict)

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