| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| estimated_gas |
str |
The estimated amount of gas used |
|
from qan.qan.output_estimate_gas import OutputEstimateGas
# TODO update the JSON string below
json = "{}"
# create an instance of OutputEstimateGas from a JSON string
output_estimate_gas_instance = OutputEstimateGas.from_json(json)
# print the JSON string representation of the object
print(OutputEstimateGas.to_json())
# convert the object into a dict
output_estimate_gas_dict = output_estimate_gas_instance.to_dict()
# create an instance of OutputEstimateGas from a dict
output_estimate_gas_from_dict = OutputEstimateGas.from_dict(output_estimate_gas_dict)
[Back to Model list] [Back to API list] [Back to README]