Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

UpdateDataDetails.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

UpdateDataDetails

Properties

Name Type Description Notes
node_id str [optional]
perform_insert_replace int [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]