Ethereum Classic
| Name | Type | Description | Notes |
|---|---|---|---|
| contract | str | Represents the specific transaction contract. | [optional] |
| gas_limit | str | Represents the amount of gas used by this specific transaction alone. | |
| gas_price | GetTransactionDetailsByTransactionIDRIBSECGasPrice | ||
| gas_used | str | Represents the exact unit of gas that was used for the transaction. | |
| input_data | str | Represents additional information that is required for the transaction. | [optional] |
| nonce | int | Represents the sequential running number for an address, starting from 0 for the first transaction. E.g., if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address. |
from cryptoapis.models.get_transaction_details_by_transaction_idribsec import GetTransactionDetailsByTransactionIDRIBSEC
# TODO update the JSON string below
json = "{}"
# create an instance of GetTransactionDetailsByTransactionIDRIBSEC from a JSON string
get_transaction_details_by_transaction_idribsec_instance = GetTransactionDetailsByTransactionIDRIBSEC.from_json(json)
# print the JSON string representation of the object
print GetTransactionDetailsByTransactionIDRIBSEC.to_json()
# convert the object into a dict
get_transaction_details_by_transaction_idribsec_dict = get_transaction_details_by_transaction_idribsec_instance.to_dict()
# create an instance of GetTransactionDetailsByTransactionIDRIBSEC from a dict
get_transaction_details_by_transaction_idribsec_form_dict = get_transaction_details_by_transaction_idribsec.from_dict(get_transaction_details_by_transaction_idribsec_dict)