Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

DropTransactionRequest.md

File metadata and controls

31 lines (22 loc) · 1.05 KB

DropTransactionRequest

Properties

Name Type Description Notes
tx_id str [optional]
fee_level str [optional]
gas_price str [optional]

Example

from fireblocks.models.drop_transaction_request import DropTransactionRequest

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

# convert the object into a dict
drop_transaction_request_dict = drop_transaction_request_instance.to_dict()
# create an instance of DropTransactionRequest from a dict
drop_transaction_request_from_dict = DropTransactionRequest.from_dict(drop_transaction_request_dict)

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