Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

EstimatedFILFee

The estimated transaction fee based on the FIL fee model. For more details about the FIL fee model, see Fee models.

Properties

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]

Example

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)

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