@@ -33,6 +33,8 @@ class WidgetRequest
3333
3434 attr_accessor :include_transactions
3535
36+ attr_accessor :insight_guid
37+
3638 attr_accessor :is_mobile_webview
3739
3840 attr_accessor :microwidget_instance_id
@@ -61,6 +63,7 @@ def self.attribute_map
6163 :'disable_institution_search' => :'disable_institution_search' ,
6264 :'include_identity' => :'include_identity' ,
6365 :'include_transactions' => :'include_transactions' ,
66+ :'insight_guid' => :'insight_guid' ,
6467 :'is_mobile_webview' => :'is_mobile_webview' ,
6568 :'microwidget_instance_id' => :'microwidget_instance_id' ,
6669 :'mode' => :'mode' ,
@@ -89,6 +92,7 @@ def self.openapi_types
8992 :'disable_institution_search' => :'Boolean' ,
9093 :'include_identity' => :'Boolean' ,
9194 :'include_transactions' => :'Boolean' ,
95+ :'insight_guid' => :'String' ,
9296 :'is_mobile_webview' => :'Boolean' ,
9397 :'microwidget_instance_id' => :'String' ,
9498 :'mode' => :'String' ,
@@ -157,6 +161,10 @@ def initialize(attributes = {})
157161 self . include_transactions = attributes [ :'include_transactions' ]
158162 end
159163
164+ if attributes . key? ( :'insight_guid' )
165+ self . insight_guid = attributes [ :'insight_guid' ]
166+ end
167+
160168 if attributes . key? ( :'is_mobile_webview' )
161169 self . is_mobile_webview = attributes [ :'is_mobile_webview' ]
162170 end
@@ -226,6 +234,7 @@ def ==(o)
226234 disable_institution_search == o . disable_institution_search &&
227235 include_identity == o . include_identity &&
228236 include_transactions == o . include_transactions &&
237+ insight_guid == o . insight_guid &&
229238 is_mobile_webview == o . is_mobile_webview &&
230239 microwidget_instance_id == o . microwidget_instance_id &&
231240 mode == o . mode &&
@@ -245,7 +254,7 @@ def eql?(o)
245254 # Calculates hash code according to all attributes.
246255 # @return [Integer] Hash code
247256 def hash
248- [ client_redirect_url , color_scheme , current_institution_code , current_institution_guid , current_member_guid , disable_background_agg , disable_institution_search , include_identity , include_transactions , is_mobile_webview , microwidget_instance_id , mode , oauth_referral_source , ui_message_version , ui_message_webview_url_scheme , update_credentials , widget_type ] . hash
257+ [ client_redirect_url , color_scheme , current_institution_code , current_institution_guid , current_member_guid , disable_background_agg , disable_institution_search , include_identity , include_transactions , insight_guid , is_mobile_webview , microwidget_instance_id , mode , oauth_referral_source , ui_message_version , ui_message_webview_url_scheme , update_credentials , widget_type ] . hash
249258 end
250259
251260 # Builds the object from hash
0 commit comments