LiteralOperand

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
valueVariant[optional]

Example

from opcua_webapi.models.literal_operand import LiteralOperand

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

# convert the object into a dict
literal_operand_dict = literal_operand_instance.to_dict()
# create an instance of LiteralOperand from a dict
literal_operand_from_dict = LiteralOperand.from_dict(literal_operand_dict)

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