Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 944 Bytes

InstructionAmount.md

File metadata and controls

30 lines (21 loc) · 944 Bytes

InstructionAmount

Properties

Name Type Description Notes
amount str
asset_id str

Example

from fireblocks.models.instruction_amount import InstructionAmount

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

# convert the object into a dict
instruction_amount_dict = instruction_amount_instance.to_dict()
# create an instance of InstructionAmount from a dict
instruction_amount_from_dict = InstructionAmount.from_dict(instruction_amount_dict)

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