ReadAnnotationDataDetails

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
req_timesList[datetime][optional]

Example

from opcua_webapi.models.read_annotation_data_details import ReadAnnotationDataDetails

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

# convert the object into a dict
read_annotation_data_details_dict = read_annotation_data_details_instance.to_dict()
# create an instance of ReadAnnotationDataDetails from a dict
read_annotation_data_details_from_dict = ReadAnnotationDataDetails.from_dict(read_annotation_data_details_dict)

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