Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.81 KB

File metadata and controls

33 lines (25 loc) · 1.81 KB

ListConfirmedTransactionsByAddressRIBSD2

Dash

Properties

Name Type Description Notes
locktime int Represents the locktime on the transaction on the specific blockchain, i.e. the blockheight at which the transaction is valid.
size int Represents the total size of this transaction.
version int Represents the transaction's version number.
vin List[ListConfirmedTransactionsByAddressRIBSD2VinInner] Represents the transaction inputs.
vout List[ListConfirmedTransactionsByAddressRIBSD2VoutInner] Represents the transaction outputs.

Example

from cryptoapis.models.list_confirmed_transactions_by_address_ribsd2 import ListConfirmedTransactionsByAddressRIBSD2

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

# convert the object into a dict
list_confirmed_transactions_by_address_ribsd2_dict = list_confirmed_transactions_by_address_ribsd2_instance.to_dict()
# create an instance of ListConfirmedTransactionsByAddressRIBSD2 from a dict
list_confirmed_transactions_by_address_ribsd2_form_dict = list_confirmed_transactions_by_address_ribsd2.from_dict(list_confirmed_transactions_by_address_ribsd2_dict)

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