BrowseDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
node_idstr[optional]
browse_directionintLink to specification.[optional]
reference_type_idstr[optional]
include_subtypesbool[optional] [default to False]
node_class_maskint[optional] [default to 0]
result_maskint[optional] [default to 0]

Example

from opcua_webapi.models.browse_description import BrowseDescription

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

# convert the object into a dict
browse_description_dict = browse_description_instance.to_dict()
# create an instance of BrowseDescription from a dict
browse_description_from_dict = BrowseDescription.from_dict(browse_description_dict)

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