Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.51 KB

ListUnconfirmedTransactionsByAddressRIBSECGasPrice.md

File metadata and controls

29 lines (21 loc) · 1.51 KB

ListUnconfirmedTransactionsByAddressRIBSECGasPrice

Properties

Name Type Description Notes
amount str Represents the price offered to the miner to purchase this amount of gas.
unit str Defines the unit of the gas price amount, e.g. BTC, ETH, XRP.

Example

from cryptoapis.models.list_unconfirmed_transactions_by_address_ribsec_gas_price import ListUnconfirmedTransactionsByAddressRIBSECGasPrice

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

# convert the object into a dict
list_unconfirmed_transactions_by_address_ribsec_gas_price_dict = list_unconfirmed_transactions_by_address_ribsec_gas_price_instance.to_dict()
# create an instance of ListUnconfirmedTransactionsByAddressRIBSECGasPrice from a dict
list_unconfirmed_transactions_by_address_ribsec_gas_price_form_dict = list_unconfirmed_transactions_by_address_ribsec_gas_price.from_dict(list_unconfirmed_transactions_by_address_ribsec_gas_price_dict)

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