DataValue

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
ua_typeint[optional] [default to 0]
valueobject[optional]
dimensionsList[int][optional]
status_codeStatusCode[optional]
source_timestampdatetime[optional]
source_picosecondsint[optional]
server_timestampdatetime[optional]
server_picosecondsint[optional]

Example

from opcua_webapi.models.data_value import DataValue

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

# convert the object into a dict
data_value_dict = data_value_instance.to_dict()
# create an instance of DataValue from a dict
data_value_from_dict = DataValue.from_dict(data_value_dict)

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