Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

EstimatedFeeDetails

Optional detailed fee breakdown for high/medium/low estimates

Properties

Name Type Description Notes
low FeeBreakdown [optional]
medium FeeBreakdown [optional]
high FeeBreakdown [optional]

Example

from fireblocks.models.estimated_fee_details import EstimatedFeeDetails

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

# convert the object into a dict
estimated_fee_details_dict = estimated_fee_details_instance.to_dict()
# create an instance of EstimatedFeeDetails from a dict
estimated_fee_details_from_dict = EstimatedFeeDetails.from_dict(estimated_fee_details_dict)

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