Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

ContractMethodConfig

Contract method configuration

Properties

Name Type Description Notes
method_calls List[str]
operator str Operator for method calls
payload_suffix str Payload suffix for method calls [optional]

Example

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)

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