Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 982 Bytes

ExtensionObject.md

File metadata and controls

31 lines (22 loc) · 982 Bytes

ExtensionObject

Properties

Name Type Description Notes
type_id str [optional]
encoding int [optional]
body object [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]