Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

ProgramCallConfig

Program call configuration

Properties

Name Type Description Notes
allowed_solana_program_calls str Whether Solana program calls are allowed

Example

from fireblocks.models.program_call_config import ProgramCallConfig

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

# convert the object into a dict
program_call_config_dict = program_call_config_instance.to_dict()
# create an instance of ProgramCallConfig from a dict
program_call_config_from_dict = ProgramCallConfig.from_dict(program_call_config_dict)

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