Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.84 KB

ListTransactionsByBlockHeightRIBSD2VinInner.md

File metadata and controls

35 lines (27 loc) · 1.84 KB

ListTransactionsByBlockHeightRIBSD2VinInner

Properties

Name Type Description Notes
addresses List[str]
coinbase str Represents the coinbase hex. [optional]
script_sig GetTransactionDetailsByTransactionIDRIBSDVinInnerScriptSig
sequence str Represents the script sequence number.
txid str Represents the reference transaction identifier. [optional]
txinwitness List[str]
value str Represents the sent/received amount.
vout int It refers to the index of the output address of this transaction. The index starts from 0.

Example

from cryptoapis.models.list_transactions_by_block_height_ribsd2_vin_inner import ListTransactionsByBlockHeightRIBSD2VinInner

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

# convert the object into a dict
list_transactions_by_block_height_ribsd2_vin_inner_dict = list_transactions_by_block_height_ribsd2_vin_inner_instance.to_dict()
# create an instance of ListTransactionsByBlockHeightRIBSD2VinInner from a dict
list_transactions_by_block_height_ribsd2_vin_inner_form_dict = list_transactions_by_block_height_ribsd2_vin_inner.from_dict(list_transactions_by_block_height_ribsd2_vin_inner_dict)

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