Details of the transaction's fee.
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] |
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)