Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 858 Bytes

Decimal.md

File metadata and controls

30 lines (21 loc) · 858 Bytes

Decimal

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]