Name | Type | Description | Notes |
---|---|---|---|
Locktime | int32 | Represents the time at which a particular transaction can be added to the blockchain. | |
TransactionHash | string | 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. | |
VSize | int32 | Represents the virtual size of this transaction. | |
Version | int32 | Represents the transaction version number. | |
Vin | []DecodeRawTransactionHexRISBVinInner | Represents the transaction inputs. | |
Vout | []DecodeRawTransactionHexRISBVoutInner | Represents the transaction outputs. | |
Weight | Pointer to int32 | Represents the size of Bitcoin block, measured in weight units and including the segwit discount. | [optional] |
func NewDecodeRawTransactionHexRISB(locktime int32, transactionHash string, vSize int32, version int32, vin []DecodeRawTransactionHexRISBVinInner, vout []DecodeRawTransactionHexRISBVoutInner, ) *DecodeRawTransactionHexRISB
NewDecodeRawTransactionHexRISB instantiates a new DecodeRawTransactionHexRISB object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewDecodeRawTransactionHexRISBWithDefaults() *DecodeRawTransactionHexRISB
NewDecodeRawTransactionHexRISBWithDefaults instantiates a new DecodeRawTransactionHexRISB object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *DecodeRawTransactionHexRISB) GetLocktime() int32
GetLocktime returns the Locktime field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetLocktimeOk() (*int32, bool)
GetLocktimeOk returns a tuple with the Locktime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetLocktime(v int32)
SetLocktime sets Locktime field to given value.
func (o *DecodeRawTransactionHexRISB) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetTransactionHash(v string)
SetTransactionHash sets TransactionHash field to given value.
func (o *DecodeRawTransactionHexRISB) GetVSize() int32
GetVSize returns the VSize field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetVSizeOk() (*int32, bool)
GetVSizeOk returns a tuple with the VSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetVSize(v int32)
SetVSize sets VSize field to given value.
func (o *DecodeRawTransactionHexRISB) GetVersion() int32
GetVersion returns the Version field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetVersionOk() (*int32, bool)
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetVersion(v int32)
SetVersion sets Version field to given value.
func (o *DecodeRawTransactionHexRISB) GetVin() []DecodeRawTransactionHexRISBVinInner
GetVin returns the Vin field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetVinOk() (*[]DecodeRawTransactionHexRISBVinInner, bool)
GetVinOk returns a tuple with the Vin field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetVin(v []DecodeRawTransactionHexRISBVinInner)
SetVin sets Vin field to given value.
func (o *DecodeRawTransactionHexRISB) GetVout() []DecodeRawTransactionHexRISBVoutInner
GetVout returns the Vout field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetVoutOk() (*[]DecodeRawTransactionHexRISBVoutInner, bool)
GetVoutOk returns a tuple with the Vout field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetVout(v []DecodeRawTransactionHexRISBVoutInner)
SetVout sets Vout field to given value.
func (o *DecodeRawTransactionHexRISB) GetWeight() int32
GetWeight returns the Weight field if non-nil, zero value otherwise.
func (o *DecodeRawTransactionHexRISB) GetWeightOk() (*int32, bool)
GetWeightOk returns a tuple with the Weight field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DecodeRawTransactionHexRISB) SetWeight(v int32)
SetWeight sets Weight field to given value.
func (o *DecodeRawTransactionHexRISB) HasWeight() bool
HasWeight returns a boolean if a field has been set.