Name | Type | Description | Notes |
---|---|---|---|
BankConnectionId | int64 | Bank connection identifier | |
Interface | Pointer to BankingInterface | <strong>Type:</strong> BankingInterface<br/> Banking interface to update. If not specified, then first available interface in bank connection will be used. | [optional] |
SimulateBankLoginError | Pointer to bool | Whether to simulate the case that the update fails due to incorrect banking credentials. Note that there is no real communication to any bank server involved, so you won't lock your accounts when enabling this flag. Default value is 'false'. | [optional] [default to false] |
MockAccountsData | Pointer to []MockAccountData | <strong>Type:</strong> MockAccountData<br/> Mock accounts data. Note that for accounts that exist in a bank connection but that you do not specify in this list, the service will act like those accounts are not received by the bank servers. This means that any accounts that you do not specify here will be marked as deprecated. If you do not specify this list at all, all accounts in the bank connection will be marked as deprecated. | [optional] |
func NewMockBankConnectionUpdate(bankConnectionId int64, ) *MockBankConnectionUpdate
NewMockBankConnectionUpdate instantiates a new MockBankConnectionUpdate 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 NewMockBankConnectionUpdateWithDefaults() *MockBankConnectionUpdate
NewMockBankConnectionUpdateWithDefaults instantiates a new MockBankConnectionUpdate 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 *MockBankConnectionUpdate) GetBankConnectionId() int64
GetBankConnectionId returns the BankConnectionId field if non-nil, zero value otherwise.
func (o *MockBankConnectionUpdate) GetBankConnectionIdOk() (*int64, bool)
GetBankConnectionIdOk returns a tuple with the BankConnectionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MockBankConnectionUpdate) SetBankConnectionId(v int64)
SetBankConnectionId sets BankConnectionId field to given value.
func (o *MockBankConnectionUpdate) GetInterface() BankingInterface
GetInterface returns the Interface field if non-nil, zero value otherwise.
func (o *MockBankConnectionUpdate) GetInterfaceOk() (*BankingInterface, bool)
GetInterfaceOk returns a tuple with the Interface field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MockBankConnectionUpdate) SetInterface(v BankingInterface)
SetInterface sets Interface field to given value.
func (o *MockBankConnectionUpdate) HasInterface() bool
HasInterface returns a boolean if a field has been set.
func (o *MockBankConnectionUpdate) GetSimulateBankLoginError() bool
GetSimulateBankLoginError returns the SimulateBankLoginError field if non-nil, zero value otherwise.
func (o *MockBankConnectionUpdate) GetSimulateBankLoginErrorOk() (*bool, bool)
GetSimulateBankLoginErrorOk returns a tuple with the SimulateBankLoginError field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MockBankConnectionUpdate) SetSimulateBankLoginError(v bool)
SetSimulateBankLoginError sets SimulateBankLoginError field to given value.
func (o *MockBankConnectionUpdate) HasSimulateBankLoginError() bool
HasSimulateBankLoginError returns a boolean if a field has been set.
func (o *MockBankConnectionUpdate) GetMockAccountsData() []MockAccountData
GetMockAccountsData returns the MockAccountsData field if non-nil, zero value otherwise.
func (o *MockBankConnectionUpdate) GetMockAccountsDataOk() (*[]MockAccountData, bool)
GetMockAccountsDataOk returns a tuple with the MockAccountsData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MockBankConnectionUpdate) SetMockAccountsData(v []MockAccountData)
SetMockAccountsData sets MockAccountsData field to given value.
func (o *MockBankConnectionUpdate) HasMockAccountsData() bool
HasMockAccountsData returns a boolean if a field has been set.