Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 949 Bytes

File metadata and controls

31 lines (22 loc) · 949 Bytes

SolParameter

The arguments of the instruction

Properties

Name Type Description Notes
name str The name of the parameter
type IdlType

Example

from fireblocks.models.sol_parameter import SolParameter

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

# convert the object into a dict
sol_parameter_dict = sol_parameter_instance.to_dict()
# create an instance of SolParameter from a dict
sol_parameter_from_dict = SolParameter.from_dict(sol_parameter_dict)

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