Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

OutputGetBalance

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
balance str The balance of the specified address in decimal value, measured in wei

Example

from qan.qan.output_get_balance import OutputGetBalance

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

# convert the object into a dict
output_get_balance_dict = output_get_balance_instance.to_dict()
# create an instance of OutputGetBalance from a dict
output_get_balance_from_dict = OutputGetBalance.from_dict(output_get_balance_dict)

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