Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 906 Bytes

LiteralOperand.md

File metadata and controls

29 lines (20 loc) · 906 Bytes

LiteralOperand

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]