Argument

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
data_typestr[optional]
value_rankint[optional] [default to 0]
array_dimensionsList[int][optional]
descriptionLocalizedText[optional]

Example

from opcua_webapi.models.argument import Argument

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

# convert the object into a dict
argument_dict = argument_instance.to_dict()
# create an instance of Argument from a dict
argument_from_dict = Argument.from_dict(argument_dict)

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