Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.36 KB

File metadata and controls

35 lines (26 loc) · 1.36 KB

BrowseDescription

Link to specification.

Properties

Name Type Description Notes
node_id str [optional]
browse_direction int Link to specification. [optional]
reference_type_id str [optional]
include_subtypes bool [optional] [default to False]
node_class_mask int [optional] [default to 0]
result_mask int [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]