Decimal

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
scaleint[optional] [default to 0]
valuestr[optional] [default to '0']

Example

from opcua_webapi.models.decimal import Decimal

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

# convert the object into a dict
decimal_dict = decimal_instance.to_dict()
# create an instance of Decimal from a dict
decimal_from_dict = Decimal.from_dict(decimal_dict)

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