ActionTargetDataType
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| action_target_id | int | [optional] [default to 0] | |
| name | str | [optional] | |
| description | LocalizedText | [optional] |
Example
from opcua_webapi.models.action_target_data_type import ActionTargetDataType
# TODO update the JSON string below
json = "{}"
# create an instance of ActionTargetDataType from a JSON string
action_target_data_type_instance = ActionTargetDataType.from_json(json)
# print the JSON string representation of the object
print(ActionTargetDataType.to_json())
# convert the object into a dict
action_target_data_type_dict = action_target_data_type_instance.to_dict()
# create an instance of ActionTargetDataType from a dict
action_target_data_type_from_dict = ActionTargetDataType.from_dict(action_target_data_type_dict)