| 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%) |
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)