diff --git a/configuration.go b/configuration.go index 4f30916..bcb34d7 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.22.0/go", + UserAgent: "OpenAPI-Generator/0.23.0/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/docs/WidgetRequest.md b/docs/WidgetRequest.md index 7037fce..18c0477 100644 --- a/docs/WidgetRequest.md +++ b/docs/WidgetRequest.md @@ -13,6 +13,7 @@ Name | Type | Description | Notes **DisableInstitutionSearch** | Pointer to **bool** | | [optional] **IncludeIdentity** | Pointer to **bool** | | [optional] **IncludeTransactions** | Pointer to **bool** | | [optional] +**InsightGuid** | Pointer to **string** | | [optional] **IsMobileWebview** | Pointer to **bool** | | [optional] **MicrowidgetInstanceId** | Pointer to **string** | | [optional] **Mode** | Pointer to **string** | | [optional] @@ -266,6 +267,31 @@ SetIncludeTransactions sets IncludeTransactions field to given value. HasIncludeTransactions returns a boolean if a field has been set. +### GetInsightGuid + +`func (o *WidgetRequest) GetInsightGuid() string` + +GetInsightGuid returns the InsightGuid field if non-nil, zero value otherwise. + +### GetInsightGuidOk + +`func (o *WidgetRequest) GetInsightGuidOk() (*string, bool)` + +GetInsightGuidOk returns a tuple with the InsightGuid field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInsightGuid + +`func (o *WidgetRequest) SetInsightGuid(v string)` + +SetInsightGuid sets InsightGuid field to given value. + +### HasInsightGuid + +`func (o *WidgetRequest) HasInsightGuid() bool` + +HasInsightGuid returns a boolean if a field has been set. + ### GetIsMobileWebview `func (o *WidgetRequest) GetIsMobileWebview() bool` diff --git a/model_widget_request.go b/model_widget_request.go index cd2321b..4b3a48f 100644 --- a/model_widget_request.go +++ b/model_widget_request.go @@ -28,6 +28,7 @@ type WidgetRequest struct { DisableInstitutionSearch *bool `json:"disable_institution_search,omitempty"` IncludeIdentity *bool `json:"include_identity,omitempty"` IncludeTransactions *bool `json:"include_transactions,omitempty"` + InsightGuid *string `json:"insight_guid,omitempty"` IsMobileWebview *bool `json:"is_mobile_webview,omitempty"` MicrowidgetInstanceId *string `json:"microwidget_instance_id,omitempty"` Mode *string `json:"mode,omitempty"` @@ -344,6 +345,38 @@ func (o *WidgetRequest) SetIncludeTransactions(v bool) { o.IncludeTransactions = &v } +// GetInsightGuid returns the InsightGuid field value if set, zero value otherwise. +func (o *WidgetRequest) GetInsightGuid() string { + if o == nil || IsNil(o.InsightGuid) { + var ret string + return ret + } + return *o.InsightGuid +} + +// GetInsightGuidOk returns a tuple with the InsightGuid field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *WidgetRequest) GetInsightGuidOk() (*string, bool) { + if o == nil || IsNil(o.InsightGuid) { + return nil, false + } + return o.InsightGuid, true +} + +// HasInsightGuid returns a boolean if a field has been set. +func (o *WidgetRequest) HasInsightGuid() bool { + if o != nil && !IsNil(o.InsightGuid) { + return true + } + + return false +} + +// SetInsightGuid gets a reference to the given string and assigns it to the InsightGuid field. +func (o *WidgetRequest) SetInsightGuid(v string) { + o.InsightGuid = &v +} + // GetIsMobileWebview returns the IsMobileWebview field value if set, zero value otherwise. func (o *WidgetRequest) GetIsMobileWebview() bool { if o == nil || IsNil(o.IsMobileWebview) { @@ -629,6 +662,9 @@ func (o WidgetRequest) ToMap() (map[string]interface{}, error) { if !IsNil(o.IncludeTransactions) { toSerialize["include_transactions"] = o.IncludeTransactions } + if !IsNil(o.InsightGuid) { + toSerialize["insight_guid"] = o.InsightGuid + } if !IsNil(o.IsMobileWebview) { toSerialize["is_mobile_webview"] = o.IsMobileWebview } diff --git a/openapi/config.yml b/openapi/config.yml index fab594a..fb4b8ce 100644 --- a/openapi/config.yml +++ b/openapi/config.yml @@ -2,4 +2,4 @@ gitRepoId: mx-platform-go gitUserId: mxenabled packageName: mxplatformgo -packageVersion: 0.22.0 +packageVersion: 0.23.0