Dash
| 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. |
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)