SetTriggeringRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
subscription_idint[optional] [default to 0]
triggering_item_idint[optional] [default to 0]
links_to_addList[int][optional]
links_to_removeList[int][optional]

Example

from opcua_webapi.models.set_triggering_request import SetTriggeringRequest

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

# convert the object into a dict
set_triggering_request_dict = set_triggering_request_instance.to_dict()
# create an instance of SetTriggeringRequest from a dict
set_triggering_request_from_dict = SetTriggeringRequest.from_dict(set_triggering_request_dict)

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