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.85 KB

File metadata and controls

34 lines (26 loc) · 1.85 KB

GetTransactionDetailsByTransactionIDRIBSL

Litecoin

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 transaction version number.
vin List[GetTransactionDetailsByTransactionIDRIBSLVinInner] Represents the transaction inputs.
vout List[GetTransactionDetailsByTransactionIDRIBSLVoutInner] Represents the transaction outputs.

Example

from cryptoapis.models.get_transaction_details_by_transaction_idribsl import GetTransactionDetailsByTransactionIDRIBSL

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

# convert the object into a dict
get_transaction_details_by_transaction_idribsl_dict = get_transaction_details_by_transaction_idribsl_instance.to_dict()
# create an instance of GetTransactionDetailsByTransactionIDRIBSL from a dict
get_transaction_details_by_transaction_idribsl_form_dict = get_transaction_details_by_transaction_idribsl.from_dict(get_transaction_details_by_transaction_idribsl_dict)

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