Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | User's identifier. Max length is 36 symbols. Only the following symbols are allowed: 0-9, A-Z, a-z, -, _, ., +, @. If not specified, then a unique random value will be generated. | [optional] |
Password | Pointer to string | User's password. Minimum length is 6, and maximum length is 128. If not specified, then a unique random value will be generated. | [optional] |
Pointer to string | User's email address. Maximum length is 320. | [optional] | |
Phone | Pointer to string | User's phone number. Maximum length is 50. | [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] [default to false] |
func NewUserCreateParams() *UserCreateParams
NewUserCreateParams instantiates a new UserCreateParams 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 NewUserCreateParamsWithDefaults() *UserCreateParams
NewUserCreateParamsWithDefaults instantiates a new UserCreateParams 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 *UserCreateParams) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *UserCreateParams) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserCreateParams) SetId(v string)
SetId sets Id field to given value.
func (o *UserCreateParams) HasId() bool
HasId returns a boolean if a field has been set.
func (o *UserCreateParams) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
func (o *UserCreateParams) GetPasswordOk() (*string, bool)
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UserCreateParams) SetPassword(v string)
SetPassword sets Password field to given value.
func (o *UserCreateParams) HasPassword() bool
HasPassword returns a boolean if a field has been set.
func (o *UserCreateParams) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *UserCreateParams) 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 *UserCreateParams) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *UserCreateParams) HasEmail() bool
HasEmail returns a boolean if a field has been set.
func (o *UserCreateParams) GetPhone() string
GetPhone returns the Phone field if non-nil, zero value otherwise.
func (o *UserCreateParams) 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 *UserCreateParams) SetPhone(v string)
SetPhone sets Phone field to given value.
func (o *UserCreateParams) HasPhone() bool
HasPhone returns a boolean if a field has been set.
func (o *UserCreateParams) GetIsAutoUpdateEnabled() bool
GetIsAutoUpdateEnabled returns the IsAutoUpdateEnabled field if non-nil, zero value otherwise.
func (o *UserCreateParams) 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 *UserCreateParams) SetIsAutoUpdateEnabled(v bool)
SetIsAutoUpdateEnabled sets IsAutoUpdateEnabled field to given value.
func (o *UserCreateParams) HasIsAutoUpdateEnabled() bool
HasIsAutoUpdateEnabled returns a boolean if a field has been set.