Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 933 Bytes

File metadata and controls

32 lines (23 loc) · 933 Bytes

Fee

Properties

Name Type Description Notes
fee_type FeeTypeEnum
asset_id str The asset identifier for the fee.
amount_type str
amount float Fee in basis points (1 = 0.01%, 10000 = 100%)

Example

from fireblocks.models.fee import Fee

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

# convert the object into a dict
fee_dict = fee_instance.to_dict()
# create an instance of Fee from a dict
fee_from_dict = Fee.from_dict(fee_dict)

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