Skip to content

Latest commit

 

History

History
227 lines (124 loc) · 5.74 KB

WalletInput.md

File metadata and controls

227 lines (124 loc) · 5.74 KB

WalletInput

Properties

Name Type Description Notes
Value string
Type Pointer to string [optional] [default to "wallet"]
Created Pointer to time.Time [optional]
Context Pointer to []map[string]interface{} [optional] [default to []]
LastAnalysis Pointer to map[string]time.Time [optional] [default to {}]
Coin Pointer to NullableString [optional]
Address Pointer to NullableString [optional]

Methods

NewWalletInput

func NewWalletInput(value string, ) *WalletInput

NewWalletInput instantiates a new WalletInput 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

NewWalletInputWithDefaults

func NewWalletInputWithDefaults() *WalletInput

NewWalletInputWithDefaults instantiates a new WalletInput 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

GetValue

func (o *WalletInput) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *WalletInput) GetValueOk() (*string, bool)

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

SetValue

func (o *WalletInput) SetValue(v string)

SetValue sets Value field to given value.

GetType

func (o *WalletInput) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *WalletInput) GetTypeOk() (*string, bool)

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

SetType

func (o *WalletInput) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *WalletInput) HasType() bool

HasType returns a boolean if a field has been set.

GetCreated

func (o *WalletInput) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *WalletInput) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *WalletInput) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *WalletInput) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetContext

func (o *WalletInput) GetContext() []map[string]interface{}

GetContext returns the Context field if non-nil, zero value otherwise.

GetContextOk

func (o *WalletInput) GetContextOk() (*[]map[string]interface{}, bool)

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

SetContext

func (o *WalletInput) SetContext(v []map[string]interface{})

SetContext sets Context field to given value.

HasContext

func (o *WalletInput) HasContext() bool

HasContext returns a boolean if a field has been set.

GetLastAnalysis

func (o *WalletInput) GetLastAnalysis() map[string]time.Time

GetLastAnalysis returns the LastAnalysis field if non-nil, zero value otherwise.

GetLastAnalysisOk

func (o *WalletInput) GetLastAnalysisOk() (*map[string]time.Time, bool)

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

SetLastAnalysis

func (o *WalletInput) SetLastAnalysis(v map[string]time.Time)

SetLastAnalysis sets LastAnalysis field to given value.

HasLastAnalysis

func (o *WalletInput) HasLastAnalysis() bool

HasLastAnalysis returns a boolean if a field has been set.

GetCoin

func (o *WalletInput) GetCoin() string

GetCoin returns the Coin field if non-nil, zero value otherwise.

GetCoinOk

func (o *WalletInput) GetCoinOk() (*string, bool)

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

SetCoin

func (o *WalletInput) SetCoin(v string)

SetCoin sets Coin field to given value.

HasCoin

func (o *WalletInput) HasCoin() bool

HasCoin returns a boolean if a field has been set.

SetCoinNil

func (o *WalletInput) SetCoinNil(b bool)

SetCoinNil sets the value for Coin to be an explicit nil

UnsetCoin

func (o *WalletInput) UnsetCoin()

UnsetCoin ensures that no value is present for Coin, not even an explicit nil

GetAddress

func (o *WalletInput) GetAddress() string

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

GetAddressOk

func (o *WalletInput) 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 *WalletInput) SetAddress(v string)

SetAddress sets Address field to given value.

HasAddress

func (o *WalletInput) HasAddress() bool

HasAddress returns a boolean if a field has been set.

SetAddressNil

func (o *WalletInput) SetAddressNil(b bool)

SetAddressNil sets the value for Address to be an explicit nil

UnsetAddress

func (o *WalletInput) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

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