Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 834 Bytes

File metadata and controls

29 lines (20 loc) · 834 Bytes

NumericAddr

Properties

Name Type Description Notes
value int

Example

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)

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