| Name | Type | Description | Notes |
|---|---|---|---|
| value | int |
from revengai.models.numeric_addr import NumericAddr
# TODO update the JSON string below
json = "{}"
# create an instance of NumericAddr from a JSON string
numeric_addr_instance = NumericAddr.from_json(json)
# print the JSON string representation of the object
print(NumericAddr.to_json())
# convert the object into a dict
numeric_addr_dict = numeric_addr_instance.to_dict()
# create an instance of NumericAddr from a dict
numeric_addr_from_dict = NumericAddr.from_dict(numeric_addr_dict)