Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

FeeInfo.md

File metadata and controls

32 lines (23 loc) · 1.03 KB

FeeInfo

Details of the transaction's fee.

Properties

Name Type Description Notes
network_fee str The fee paid to the network [optional]
service_fee str The total fee deducted by the exchange from the actual requested amount (serviceFee = amount - netAmount) [optional]
gas_price str [optional]

Example

from fireblocks.models.fee_info import FeeInfo

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

# convert the object into a dict
fee_info_dict = fee_info_instance.to_dict()
# create an instance of FeeInfo from a dict
fee_info_from_dict = FeeInfo.from_dict(fee_info_dict)

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