diff --git a/configuration.go b/configuration.go index c64ed36..f4421a7 100644 --- a/configuration.go +++ b/configuration.go @@ -89,7 +89,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/0.39.0/go", + UserAgent: "OpenAPI-Generator/0.40.0/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/docs/AccountResponse.md b/docs/AccountResponse.md index f0f507f..3d793c2 100644 --- a/docs/AccountResponse.md +++ b/docs/AccountResponse.md @@ -21,6 +21,7 @@ Name | Type | Description | Notes **CurrencyCode** | Pointer to **NullableString** | | [optional] **DayPaymentIsDue** | Pointer to **NullableInt32** | | [optional] **DeathBenefit** | Pointer to **NullableInt32** | | [optional] +**FederalInsuranceStatus** | Pointer to **NullableString** | | [optional] **Guid** | Pointer to **NullableString** | | [optional] **HoldingsValue** | Pointer to **NullableFloat32** | | [optional] **Id** | Pointer to **NullableString** | | [optional] @@ -667,6 +668,41 @@ HasDeathBenefit returns a boolean if a field has been set. `func (o *AccountResponse) UnsetDeathBenefit()` UnsetDeathBenefit ensures that no value is present for DeathBenefit, not even an explicit nil +### GetFederalInsuranceStatus + +`func (o *AccountResponse) GetFederalInsuranceStatus() string` + +GetFederalInsuranceStatus returns the FederalInsuranceStatus field if non-nil, zero value otherwise. + +### GetFederalInsuranceStatusOk + +`func (o *AccountResponse) GetFederalInsuranceStatusOk() (*string, bool)` + +GetFederalInsuranceStatusOk returns a tuple with the FederalInsuranceStatus field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFederalInsuranceStatus + +`func (o *AccountResponse) SetFederalInsuranceStatus(v string)` + +SetFederalInsuranceStatus sets FederalInsuranceStatus field to given value. + +### HasFederalInsuranceStatus + +`func (o *AccountResponse) HasFederalInsuranceStatus() bool` + +HasFederalInsuranceStatus returns a boolean if a field has been set. + +### SetFederalInsuranceStatusNil + +`func (o *AccountResponse) SetFederalInsuranceStatusNil(b bool)` + + SetFederalInsuranceStatusNil sets the value for FederalInsuranceStatus to be an explicit nil + +### UnsetFederalInsuranceStatus +`func (o *AccountResponse) UnsetFederalInsuranceStatus()` + +UnsetFederalInsuranceStatus ensures that no value is present for FederalInsuranceStatus, not even an explicit nil ### GetGuid `func (o *AccountResponse) GetGuid() string` diff --git a/docs/InstitutionResponse.md b/docs/InstitutionResponse.md index 4ea119a..a744fba 100644 --- a/docs/InstitutionResponse.md +++ b/docs/InstitutionResponse.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **SupportsAccountStatement** | Pointer to **NullableBool** | | [optional] **SupportsAccountVerification** | Pointer to **NullableBool** | | [optional] **SupportsOauth** | Pointer to **NullableBool** | | [optional] +**SupportsTaxDocument** | Pointer to **NullableBool** | | [optional] **SupportsTransactionHistory** | Pointer to **NullableBool** | | [optional] **TroubleSigningInUrl** | Pointer to **NullableString** | | [optional] **Url** | Pointer to **NullableString** | | [optional] @@ -423,6 +424,41 @@ HasSupportsOauth returns a boolean if a field has been set. `func (o *InstitutionResponse) UnsetSupportsOauth()` UnsetSupportsOauth ensures that no value is present for SupportsOauth, not even an explicit nil +### GetSupportsTaxDocument + +`func (o *InstitutionResponse) GetSupportsTaxDocument() bool` + +GetSupportsTaxDocument returns the SupportsTaxDocument field if non-nil, zero value otherwise. + +### GetSupportsTaxDocumentOk + +`func (o *InstitutionResponse) GetSupportsTaxDocumentOk() (*bool, bool)` + +GetSupportsTaxDocumentOk returns a tuple with the SupportsTaxDocument field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSupportsTaxDocument + +`func (o *InstitutionResponse) SetSupportsTaxDocument(v bool)` + +SetSupportsTaxDocument sets SupportsTaxDocument field to given value. + +### HasSupportsTaxDocument + +`func (o *InstitutionResponse) HasSupportsTaxDocument() bool` + +HasSupportsTaxDocument returns a boolean if a field has been set. + +### SetSupportsTaxDocumentNil + +`func (o *InstitutionResponse) SetSupportsTaxDocumentNil(b bool)` + + SetSupportsTaxDocumentNil sets the value for SupportsTaxDocument to be an explicit nil + +### UnsetSupportsTaxDocument +`func (o *InstitutionResponse) UnsetSupportsTaxDocument()` + +UnsetSupportsTaxDocument ensures that no value is present for SupportsTaxDocument, not even an explicit nil ### GetSupportsTransactionHistory `func (o *InstitutionResponse) GetSupportsTransactionHistory() bool` diff --git a/model_account_response.go b/model_account_response.go index 93c6fc5..4f7d91b 100644 --- a/model_account_response.go +++ b/model_account_response.go @@ -36,6 +36,7 @@ type AccountResponse struct { CurrencyCode NullableString `json:"currency_code,omitempty"` DayPaymentIsDue NullableInt32 `json:"day_payment_is_due,omitempty"` DeathBenefit NullableInt32 `json:"death_benefit,omitempty"` + FederalInsuranceStatus NullableString `json:"federal_insurance_status,omitempty"` Guid NullableString `json:"guid,omitempty"` HoldingsValue NullableFloat32 `json:"holdings_value,omitempty"` Id NullableString `json:"id,omitempty"` @@ -800,6 +801,48 @@ func (o *AccountResponse) UnsetDeathBenefit() { o.DeathBenefit.Unset() } +// GetFederalInsuranceStatus returns the FederalInsuranceStatus field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *AccountResponse) GetFederalInsuranceStatus() string { + if o == nil || IsNil(o.FederalInsuranceStatus.Get()) { + var ret string + return ret + } + return *o.FederalInsuranceStatus.Get() +} + +// GetFederalInsuranceStatusOk returns a tuple with the FederalInsuranceStatus field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *AccountResponse) GetFederalInsuranceStatusOk() (*string, bool) { + if o == nil { + return nil, false + } + return o.FederalInsuranceStatus.Get(), o.FederalInsuranceStatus.IsSet() +} + +// HasFederalInsuranceStatus returns a boolean if a field has been set. +func (o *AccountResponse) HasFederalInsuranceStatus() bool { + if o != nil && o.FederalInsuranceStatus.IsSet() { + return true + } + + return false +} + +// SetFederalInsuranceStatus gets a reference to the given NullableString and assigns it to the FederalInsuranceStatus field. +func (o *AccountResponse) SetFederalInsuranceStatus(v string) { + o.FederalInsuranceStatus.Set(&v) +} +// SetFederalInsuranceStatusNil sets the value for FederalInsuranceStatus to be an explicit nil +func (o *AccountResponse) SetFederalInsuranceStatusNil() { + o.FederalInsuranceStatus.Set(nil) +} + +// UnsetFederalInsuranceStatus ensures that no value is present for FederalInsuranceStatus, not even an explicit nil +func (o *AccountResponse) UnsetFederalInsuranceStatus() { + o.FederalInsuranceStatus.Unset() +} + // GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null). func (o *AccountResponse) GetGuid() string { if o == nil || IsNil(o.Guid.Get()) { @@ -2583,6 +2626,9 @@ func (o AccountResponse) ToMap() (map[string]interface{}, error) { if o.DeathBenefit.IsSet() { toSerialize["death_benefit"] = o.DeathBenefit.Get() } + if o.FederalInsuranceStatus.IsSet() { + toSerialize["federal_insurance_status"] = o.FederalInsuranceStatus.Get() + } if o.Guid.IsSet() { toSerialize["guid"] = o.Guid.Get() } diff --git a/model_institution_response.go b/model_institution_response.go index 3f5cd26..455fff8 100644 --- a/model_institution_response.go +++ b/model_institution_response.go @@ -30,6 +30,7 @@ type InstitutionResponse struct { SupportsAccountStatement NullableBool `json:"supports_account_statement,omitempty"` SupportsAccountVerification NullableBool `json:"supports_account_verification,omitempty"` SupportsOauth NullableBool `json:"supports_oauth,omitempty"` + SupportsTaxDocument NullableBool `json:"supports_tax_document,omitempty"` SupportsTransactionHistory NullableBool `json:"supports_transaction_history,omitempty"` TroubleSigningInUrl NullableString `json:"trouble_signing_in_url,omitempty"` Url NullableString `json:"url,omitempty"` @@ -514,6 +515,48 @@ func (o *InstitutionResponse) UnsetSupportsOauth() { o.SupportsOauth.Unset() } +// GetSupportsTaxDocument returns the SupportsTaxDocument field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *InstitutionResponse) GetSupportsTaxDocument() bool { + if o == nil || IsNil(o.SupportsTaxDocument.Get()) { + var ret bool + return ret + } + return *o.SupportsTaxDocument.Get() +} + +// GetSupportsTaxDocumentOk returns a tuple with the SupportsTaxDocument field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *InstitutionResponse) GetSupportsTaxDocumentOk() (*bool, bool) { + if o == nil { + return nil, false + } + return o.SupportsTaxDocument.Get(), o.SupportsTaxDocument.IsSet() +} + +// HasSupportsTaxDocument returns a boolean if a field has been set. +func (o *InstitutionResponse) HasSupportsTaxDocument() bool { + if o != nil && o.SupportsTaxDocument.IsSet() { + return true + } + + return false +} + +// SetSupportsTaxDocument gets a reference to the given NullableBool and assigns it to the SupportsTaxDocument field. +func (o *InstitutionResponse) SetSupportsTaxDocument(v bool) { + o.SupportsTaxDocument.Set(&v) +} +// SetSupportsTaxDocumentNil sets the value for SupportsTaxDocument to be an explicit nil +func (o *InstitutionResponse) SetSupportsTaxDocumentNil() { + o.SupportsTaxDocument.Set(nil) +} + +// UnsetSupportsTaxDocument ensures that no value is present for SupportsTaxDocument, not even an explicit nil +func (o *InstitutionResponse) UnsetSupportsTaxDocument() { + o.SupportsTaxDocument.Unset() +} + // GetSupportsTransactionHistory returns the SupportsTransactionHistory field value if set, zero value otherwise (both if not set or set to explicit null). func (o *InstitutionResponse) GetSupportsTransactionHistory() bool { if o == nil || IsNil(o.SupportsTransactionHistory.Get()) { @@ -683,6 +726,9 @@ func (o InstitutionResponse) ToMap() (map[string]interface{}, error) { if o.SupportsOauth.IsSet() { toSerialize["supports_oauth"] = o.SupportsOauth.Get() } + if o.SupportsTaxDocument.IsSet() { + toSerialize["supports_tax_document"] = o.SupportsTaxDocument.Get() + } if o.SupportsTransactionHistory.IsSet() { toSerialize["supports_transaction_history"] = o.SupportsTransactionHistory.Get() } diff --git a/openapi/config.yml b/openapi/config.yml index 5c4dddd..2c6a61b 100644 --- a/openapi/config.yml +++ b/openapi/config.yml @@ -2,4 +2,4 @@ gitRepoId: mx-platform-go gitUserId: mxenabled packageName: mxplatformgo -packageVersion: 0.39.0 +packageVersion: 0.40.0