Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 861 Bytes

File metadata and controls

30 lines (21 loc) · 861 Bytes

BpsFee

Properties

Name Type Description Notes
amount_type str
amount float Fee in basis points (1 = 0.01%, 10000 = 100%)

Example

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)

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