Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 947 Bytes

File metadata and controls

31 lines (22 loc) · 947 Bytes

Decimal

Link to specification.

Properties

Name Type Description Notes
scale int [optional] [default to 0]
value str [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]