Skip to content

Latest commit

 

History

History
176 lines (95 loc) · 5.71 KB

TransactionMPCWalletSource.md

File metadata and controls

176 lines (95 loc) · 5.71 KB

TransactionMPCWalletSource

Properties

Name Type Description Notes
SourceType TransactionSourceType
WalletId string The wallet ID.
Address Pointer to string The wallet address. [optional]
IncludedUtxos Pointer to []TransactionUtxo [optional]
ExcludedUtxos Pointer to []TransactionUtxo [optional]
SignerKeyShareHolderGroupId Pointer to string The ID of the key share holder group that is selected to sign the transaction. [optional]

Methods

NewTransactionMPCWalletSource

func NewTransactionMPCWalletSource(sourceType TransactionSourceType, walletId string, ) *TransactionMPCWalletSource

NewTransactionMPCWalletSource instantiates a new TransactionMPCWalletSource 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

NewTransactionMPCWalletSourceWithDefaults

func NewTransactionMPCWalletSourceWithDefaults() *TransactionMPCWalletSource

NewTransactionMPCWalletSourceWithDefaults instantiates a new TransactionMPCWalletSource 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

GetSourceType

func (o *TransactionMPCWalletSource) GetSourceType() TransactionSourceType

GetSourceType returns the SourceType field if non-nil, zero value otherwise.

GetSourceTypeOk

func (o *TransactionMPCWalletSource) GetSourceTypeOk() (*TransactionSourceType, bool)

GetSourceTypeOk returns a tuple with the SourceType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSourceType

func (o *TransactionMPCWalletSource) SetSourceType(v TransactionSourceType)

SetSourceType sets SourceType field to given value.

GetWalletId

func (o *TransactionMPCWalletSource) GetWalletId() string

GetWalletId returns the WalletId field if non-nil, zero value otherwise.

GetWalletIdOk

func (o *TransactionMPCWalletSource) GetWalletIdOk() (*string, bool)

GetWalletIdOk returns a tuple with the WalletId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetWalletId

func (o *TransactionMPCWalletSource) SetWalletId(v string)

SetWalletId sets WalletId field to given value.

GetAddress

func (o *TransactionMPCWalletSource) GetAddress() string

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *TransactionMPCWalletSource) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAddress

func (o *TransactionMPCWalletSource) SetAddress(v string)

SetAddress sets Address field to given value.

HasAddress

func (o *TransactionMPCWalletSource) HasAddress() bool

HasAddress returns a boolean if a field has been set.

GetIncludedUtxos

func (o *TransactionMPCWalletSource) GetIncludedUtxos() []TransactionUtxo

GetIncludedUtxos returns the IncludedUtxos field if non-nil, zero value otherwise.

GetIncludedUtxosOk

func (o *TransactionMPCWalletSource) GetIncludedUtxosOk() (*[]TransactionUtxo, bool)

GetIncludedUtxosOk returns a tuple with the IncludedUtxos field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetIncludedUtxos

func (o *TransactionMPCWalletSource) SetIncludedUtxos(v []TransactionUtxo)

SetIncludedUtxos sets IncludedUtxos field to given value.

HasIncludedUtxos

func (o *TransactionMPCWalletSource) HasIncludedUtxos() bool

HasIncludedUtxos returns a boolean if a field has been set.

GetExcludedUtxos

func (o *TransactionMPCWalletSource) GetExcludedUtxos() []TransactionUtxo

GetExcludedUtxos returns the ExcludedUtxos field if non-nil, zero value otherwise.

GetExcludedUtxosOk

func (o *TransactionMPCWalletSource) GetExcludedUtxosOk() (*[]TransactionUtxo, bool)

GetExcludedUtxosOk returns a tuple with the ExcludedUtxos field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExcludedUtxos

func (o *TransactionMPCWalletSource) SetExcludedUtxos(v []TransactionUtxo)

SetExcludedUtxos sets ExcludedUtxos field to given value.

HasExcludedUtxos

func (o *TransactionMPCWalletSource) HasExcludedUtxos() bool

HasExcludedUtxos returns a boolean if a field has been set.

GetSignerKeyShareHolderGroupId

func (o *TransactionMPCWalletSource) GetSignerKeyShareHolderGroupId() string

GetSignerKeyShareHolderGroupId returns the SignerKeyShareHolderGroupId field if non-nil, zero value otherwise.

GetSignerKeyShareHolderGroupIdOk

func (o *TransactionMPCWalletSource) GetSignerKeyShareHolderGroupIdOk() (*string, bool)

GetSignerKeyShareHolderGroupIdOk returns a tuple with the SignerKeyShareHolderGroupId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSignerKeyShareHolderGroupId

func (o *TransactionMPCWalletSource) SetSignerKeyShareHolderGroupId(v string)

SetSignerKeyShareHolderGroupId sets SignerKeyShareHolderGroupId field to given value.

HasSignerKeyShareHolderGroupId

func (o *TransactionMPCWalletSource) HasSignerKeyShareHolderGroupId() bool

HasSignerKeyShareHolderGroupId returns a boolean if a field has been set.

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