UpdateDataDetails

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
node_idstr[optional]
perform_insert_replaceintLink to specification.[optional]
update_valuesList[DataValue][optional]

Example

from opcua_webapi.models.update_data_details import UpdateDataDetails

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

# convert the object into a dict
update_data_details_dict = update_data_details_instance.to_dict()
# create an instance of UpdateDataDetails from a dict
update_data_details_from_dict = UpdateDataDetails.from_dict(update_data_details_dict)

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