Litecoin
| Name | Type | Description | Notes |
|---|---|---|---|
| locktime | int | Represents the time at which a particular transaction can be added to the blockchain | |
| transaction_hash | str | Represents the same as transactionId for account-based protocols like Ethereum, while it could be different in UTXO-based protocols like Bitcoin. E.g., in UTXO-based protocols hash is different from transactionId for SegWit transactions. | |
| v_size | int | Represents the virtual size of this transaction. | |
| version | int | Represents transaction version number. | |
| vin | List[DecodeRawTransactionHexRISLVinInner] | Represents the transaction inputs. | |
| vout | List[DecodeRawTransactionHexRISLVoutInner] | Represents the transaction outputs. | |
| weight | int | Represents the size of a block, measured in weight units and including the segwit discount. | [optional] |
from cryptoapis.models.decode_raw_transaction_hex_risl import DecodeRawTransactionHexRISL
# TODO update the JSON string below
json = "{}"
# create an instance of DecodeRawTransactionHexRISL from a JSON string
decode_raw_transaction_hex_risl_instance = DecodeRawTransactionHexRISL.from_json(json)
# print the JSON string representation of the object
print DecodeRawTransactionHexRISL.to_json()
# convert the object into a dict
decode_raw_transaction_hex_risl_dict = decode_raw_transaction_hex_risl_instance.to_dict()
# create an instance of DecodeRawTransactionHexRISL from a dict
decode_raw_transaction_hex_risl_form_dict = decode_raw_transaction_hex_risl.from_dict(decode_raw_transaction_hex_risl_dict)