Name | Type | Description | Notes |
---|---|---|---|
Pointer to string | User's new email address. Maximum length is 320. Pass an empty string ("") if you want to clear the current email address. | [optional] | |
Phone | Pointer to string | User's new phone number. Maximum length is 50. Pass an empty string ("") if you want to clear the current phone number. | [optional] |
IsAutoUpdateEnabled | Pointer to bool | Whether the user's bank connections will get updated in the course of finAPI's automatic batch update. Note that the automatic batch update will only update bank connections where all of the following applies:<br><br> - a valid consent exists OR the PIN is stored in finAPI for the bank connection, and the related bank does not have volatile PINs (see the 'isVolatile' flag of the 'loginCredentials')<br/> - the user has accepted the latest Terms and Conditions (this only applies to users whose mandator doesn't have an AIS license)<br> - the bank connection interface flag 'userActionRequired' has to be false<br> - the previous update using the stored credentials did not fail due to the credentials being incorrect (or there was no previous update with the stored credentials)<br> - the bank that the bank connection relates to is included in the automatic batch update (please contact your Sys-Admin for details about the batch update configuration)<br>- at least one of the bank's supported data sources can be used by finAPI for your client (i.e.: if a bank supports only web scraping, but web scraping is disabled for your client, then bank connections of that bank will not get updated by the automatic batch update)<br><br>Also note that the automatic batch update must generally be enabled for your client for this field to have any effect.<br/><br/>WARNING: The automatic update will always download transactions and security positions for any account that it updates, even if the account was previously imported or updated with 'skipPositionsDownload' = true.<br/><br/>Default value is false. | [optional] |
func NewUserUpdateParams() *UserUpdateParams
NewUserUpdateParams instantiates a new UserUpdateParams 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 NewUserUpdateParamsWithDefaults() *UserUpdateParams
NewUserUpdateParamsWithDefaults instantiates a new UserUpdateParams 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 *UserUpdateParams) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *UserUpdateParams) GetEmailOk() (*string, bool)
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserUpdateParams) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *UserUpdateParams) HasEmail() bool
HasEmail returns a boolean if a field has been set.
func (o *UserUpdateParams) GetPhone() string
GetPhone returns the Phone field if non-nil, zero value otherwise.
func (o *UserUpdateParams) GetPhoneOk() (*string, bool)
GetPhoneOk returns a tuple with the Phone field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserUpdateParams) SetPhone(v string)
SetPhone sets Phone field to given value.
func (o *UserUpdateParams) HasPhone() bool
HasPhone returns a boolean if a field has been set.
func (o *UserUpdateParams) GetIsAutoUpdateEnabled() bool
GetIsAutoUpdateEnabled returns the IsAutoUpdateEnabled field if non-nil, zero value otherwise.
func (o *UserUpdateParams) GetIsAutoUpdateEnabledOk() (*bool, bool)
GetIsAutoUpdateEnabledOk returns a tuple with the IsAutoUpdateEnabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserUpdateParams) SetIsAutoUpdateEnabled(v bool)
SetIsAutoUpdateEnabled sets IsAutoUpdateEnabled field to given value.
func (o *UserUpdateParams) HasIsAutoUpdateEnabled() bool
HasIsAutoUpdateEnabled returns a boolean if a field has been set.