Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 861 Bytes

File metadata and controls

30 lines (21 loc) · 861 Bytes

UtxoInput

Properties

Name Type Description Notes
tx_hash str
index int The output index (vout)

Example

from fireblocks.models.utxo_input import UtxoInput

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

# convert the object into a dict
utxo_input_dict = utxo_input_instance.to_dict()
# create an instance of UtxoInput from a dict
utxo_input_from_dict = UtxoInput.from_dict(utxo_input_dict)

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