Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

LiteralOperand

Link to specification.

Properties

Name Type Description Notes
value Variant [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]