Name |
Type |
Description |
Notes |
name |
str |
The name of the parameter as it appears in the ABI |
|
description |
str |
A description of the parameter, fetched from the devdoc of this contract |
[optional] |
internal_type |
str |
The internal type of the parameter as it appears in the ABI |
[optional] |
type |
str |
The type of the parameter as it appears in the ABI |
|
components |
List[Parameter] |
|
[optional] |
from fireblocks.models.parameter import Parameter
# TODO update the JSON string below
json = "{}"
# create an instance of Parameter from a JSON string
parameter_instance = Parameter.from_json(json)
# print the JSON string representation of the object
print(Parameter.to_json())
# convert the object into a dict
parameter_dict = parameter_instance.to_dict()
# create an instance of Parameter from a dict
parameter_from_dict = Parameter.from_dict(parameter_dict)
[Back to Model list] [Back to API list] [Back to README]