Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 998 Bytes

File metadata and controls

31 lines (22 loc) · 998 Bytes

InputCall

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
block_number str
transaction ParamsTransaction The transaction call object

Example

from qan.qan.input_call import InputCall

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

# convert the object into a dict
input_call_dict = input_call_instance.to_dict()
# create an instance of InputCall from a dict
input_call_from_dict = InputCall.from_dict(input_call_dict)

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