Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 766 Bytes

Funds.md

File metadata and controls

29 lines (20 loc) · 766 Bytes

Funds

Properties

Name Type Description Notes
amount float [optional]

Example

from fireblocks.models.funds import Funds

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

# convert the object into a dict
funds_dict = funds_instance.to_dict()
# create an instance of Funds from a dict
funds_from_dict = Funds.from_dict(funds_dict)

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