Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.53 KB

ListTransactionsByBlockHeightRIBSD2VoutInner.md

File metadata and controls

30 lines (22 loc) · 1.53 KB

ListTransactionsByBlockHeightRIBSD2VoutInner

Properties

Name Type Description Notes
is_spent bool Defines whether the output is spent or not.
script_pub_key ListTransactionsByBlockHeightRIBSD2VoutInnerScriptPubKey
value str Represents the sent/received amount.

Example

from cryptoapis.models.list_transactions_by_block_height_ribsd2_vout_inner import ListTransactionsByBlockHeightRIBSD2VoutInner

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

# convert the object into a dict
list_transactions_by_block_height_ribsd2_vout_inner_dict = list_transactions_by_block_height_ribsd2_vout_inner_instance.to_dict()
# create an instance of ListTransactionsByBlockHeightRIBSD2VoutInner from a dict
list_transactions_by_block_height_ribsd2_vout_inner_form_dict = list_transactions_by_block_height_ribsd2_vout_inner.from_dict(list_transactions_by_block_height_ribsd2_vout_inner_dict)

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