The estimated transaction fee based on the FIL fee model. For more details about the FIL fee model, see Fee models.
| Name | Type | Description | Notes |
|---|---|---|---|
| fee_type | FeeType | ||
| token_id | str | The token used to pay the transaction fee. | |
| slow | EstimatedFILFeeSlow | [optional] | |
| recommended | EstimatedFILFeeSlow | ||
| fast | EstimatedFILFeeSlow | [optional] |
from cobo_waas2.models.estimated_fil_fee import EstimatedFILFee
# TODO update the JSON string below
json = "{}"
# create an instance of EstimatedFILFee from a JSON string
estimated_fil_fee_instance = EstimatedFILFee.from_json(json)
# print the JSON string representation of the object
print(EstimatedFILFee.to_json())
# convert the object into a dict
estimated_fil_fee_dict = estimated_fil_fee_instance.to_dict()
# create an instance of EstimatedFILFee from a dict
estimated_fil_fee_from_dict = EstimatedFILFee.from_dict(estimated_fil_fee_dict)