Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

FeeBreakdown

Fee breakdown details for a transaction estimate

Properties

Name Type Description Notes
base_fee str Base fee component [optional]
priority_fee str Priority fee component [optional]
rent str Rent fee for account creation/storage (Solana-specific, optional) [optional]
total_fee str Total fee amount [optional]

Example

from fireblocks.models.fee_breakdown import FeeBreakdown

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

# convert the object into a dict
fee_breakdown_dict = fee_breakdown_instance.to_dict()
# create an instance of FeeBreakdown from a dict
fee_breakdown_from_dict = FeeBreakdown.from_dict(fee_breakdown_dict)

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