Contract method configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| method_calls | List[str] | ||
| operator | str | Operator for method calls | |
| payload_suffix | str | Payload suffix for method calls | [optional] |
from fireblocks.models.contract_method_config import ContractMethodConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ContractMethodConfig from a JSON string
contract_method_config_instance = ContractMethodConfig.from_json(json)
# print the JSON string representation of the object
print(ContractMethodConfig.to_json())
# convert the object into a dict
contract_method_config_dict = contract_method_config_instance.to_dict()
# create an instance of ContractMethodConfig from a dict
contract_method_config_from_dict = ContractMethodConfig.from_dict(contract_method_config_dict)