| Name | Type | Description | Notes |
|---|---|---|---|
| amount_type | str | ||
| amount | float | Fee in basis points (1 = 0.01%, 10000 = 100%) |
from fireblocks.models.bps_fee import BpsFee
# TODO update the JSON string below
json = "{}"
# create an instance of BpsFee from a JSON string
bps_fee_instance = BpsFee.from_json(json)
# print the JSON string representation of the object
print(BpsFee.to_json())
# convert the object into a dict
bps_fee_dict = bps_fee_instance.to_dict()
# create an instance of BpsFee from a dict
bps_fee_from_dict = BpsFee.from_dict(bps_fee_dict)