Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

UpdateDataDetails

Link to specification.

Properties

Name Type Description Notes
node_id str [optional]
perform_insert_replace int Link to specification. [optional]
update_values List[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]