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

Latest commit

 

History

History
34 lines (26 loc) · 1.86 KB

File metadata and controls

34 lines (26 loc) · 1.86 KB

GetTransactionDetailsByTransactionIDRIBSB

Bitcoin

Properties

Name Type Description Notes
locktime int Represents the time at which a particular transaction can be added to the blockchain.
size int Represents the total size of this transaction.
v_size int Represents the virtual size of this transaction.
version int Represents the transaction version number.
vin List[GetTransactionDetailsByTransactionIDRIBSBVinInner] Represents the transaction inputs.
vout List[GetTransactionDetailsByTransactionIDRIBSBVoutInner] Represents the transaction outputs.

Example

from cryptoapis.models.get_transaction_details_by_transaction_idribsb import GetTransactionDetailsByTransactionIDRIBSB

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

# convert the object into a dict
get_transaction_details_by_transaction_idribsb_dict = get_transaction_details_by_transaction_idribsb_instance.to_dict()
# create an instance of GetTransactionDetailsByTransactionIDRIBSB from a dict
get_transaction_details_by_transaction_idribsb_form_dict = get_transaction_details_by_transaction_idribsb.from_dict(get_transaction_details_by_transaction_idribsb_dict)

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