ReadAnnotationDataDetails
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| req_times | List[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)