ActionTargetDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
action_target_idint[optional] [default to 0]
namestr[optional]
descriptionLocalizedText[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)

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