Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.47 KB

WalletInfoEventData.md

File metadata and controls

77 lines (42 loc) · 2.47 KB

WalletInfoEventData

Properties

Name Type Description Notes
DataType string The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data.
Wallet Pointer to WalletInfo [optional]

Methods

NewWalletInfoEventData

func NewWalletInfoEventData(dataType string, ) *WalletInfoEventData

NewWalletInfoEventData instantiates a new WalletInfoEventData 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

NewWalletInfoEventDataWithDefaults

func NewWalletInfoEventDataWithDefaults() *WalletInfoEventData

NewWalletInfoEventDataWithDefaults instantiates a new WalletInfoEventData 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

GetDataType

func (o *WalletInfoEventData) GetDataType() string

GetDataType returns the DataType field if non-nil, zero value otherwise.

GetDataTypeOk

func (o *WalletInfoEventData) GetDataTypeOk() (*string, bool)

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

SetDataType

func (o *WalletInfoEventData) SetDataType(v string)

SetDataType sets DataType field to given value.

GetWallet

func (o *WalletInfoEventData) GetWallet() WalletInfo

GetWallet returns the Wallet field if non-nil, zero value otherwise.

GetWalletOk

func (o *WalletInfoEventData) GetWalletOk() (*WalletInfo, bool)

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

SetWallet

func (o *WalletInfoEventData) SetWallet(v WalletInfo)

SetWallet sets Wallet field to given value.

HasWallet

func (o *WalletInfoEventData) HasWallet() bool

HasWallet returns a boolean if a field has been set.

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