@@ -119,6 +119,8 @@ class CustomConfigParameters
119119
120120 attr_accessor :readonly
121121
122+ attr_accessor :no_new_root_comments
123+
122124 attr_accessor :require_sso
123125
124126 attr_accessor :enable_resize_handle
@@ -237,6 +239,7 @@ def self.attribute_map
237239 :'no_styles' => :'noStyles' ,
238240 :'page_size' => :'pageSize' ,
239241 :'readonly' => :'readonly' ,
242+ :'no_new_root_comments' => :'noNewRootComments' ,
240243 :'require_sso' => :'requireSSO' ,
241244 :'enable_resize_handle' => :'enableResizeHandle' ,
242245 :'restricted_link_domains' => :'restrictedLinkDomains' ,
@@ -325,6 +328,7 @@ def self.openapi_types
325328 :'no_styles' => :'Boolean' ,
326329 :'page_size' => :'Integer' ,
327330 :'readonly' => :'Boolean' ,
331+ :'no_new_root_comments' => :'Boolean' ,
328332 :'require_sso' => :'Boolean' ,
329333 :'enable_resize_handle' => :'Boolean' ,
330334 :'restricted_link_domains' => :'Array<String>' ,
@@ -596,6 +600,10 @@ def initialize(attributes = {})
596600 self . readonly = attributes [ :'readonly' ]
597601 end
598602
603+ if attributes . key? ( :'no_new_root_comments' )
604+ self . no_new_root_comments = attributes [ :'no_new_root_comments' ]
605+ end
606+
599607 if attributes . key? ( :'require_sso' )
600608 self . require_sso = attributes [ :'require_sso' ]
601609 end
@@ -755,6 +763,7 @@ def ==(o)
755763 no_styles == o . no_styles &&
756764 page_size == o . page_size &&
757765 readonly == o . readonly &&
766+ no_new_root_comments == o . no_new_root_comments &&
758767 require_sso == o . require_sso &&
759768 enable_resize_handle == o . enable_resize_handle &&
760769 restricted_link_domains == o . restricted_link_domains &&
@@ -786,7 +795,7 @@ def eql?(o)
786795 # Calculates hash code according to all attributes.
787796 # @return [Integer] Hash code
788797 def hash
789- [ absolute_and_relative_dates , absolute_dates , allow_anon , allow_anon_flag , allow_anon_votes , allowed_languages , collapse_replies , comment_count_format , comment_html_rendering_mode , comment_thread_delete_mode , commenter_name_format , count_above_toggle , custom_css , default_avatar_src , default_sort_direction , default_username , disable_auto_admin_migration , disable_auto_hash_tag_creation , disable_blocking , disable_commenter_comment_delete , disable_commenter_comment_edit , disable_email_inputs , disable_live_commenting , disable_notification_bell , disable_profiles , disable_success_message , disable_toolbar , disable_unverified_label , disable_voting , enable_commenter_links , enable_search , enable_spoilers , enable_third_party_cookie_bypass , enable_view_counts , enable_vote_list , enable_wysiwyg , gif_rating , has_dark_background , header_html , hide_avatars , hide_comments_under_count_text_format , image_content_profanity_level , input_after_comments , limit_comments_by_groups , locale , max_comment_character_length , max_comment_created_count_pupm , no_custom_config , no_image_uploads , no_styles , page_size , readonly , require_sso , enable_resize_handle , restricted_link_domains , show_badges_in_top_bar , show_comment_save_success , show_live_right_away , show_question , spam_rules , sso_sec_lvl , translations , use_show_comments_toggle , use_single_line_comment_input , vote_style , widget_question_id , widget_question_results_style , widget_question_style , widget_question_when_to_save , widget_questions_required , widget_sub_question_visibility , wrap ] . hash
798+ [ absolute_and_relative_dates , absolute_dates , allow_anon , allow_anon_flag , allow_anon_votes , allowed_languages , collapse_replies , comment_count_format , comment_html_rendering_mode , comment_thread_delete_mode , commenter_name_format , count_above_toggle , custom_css , default_avatar_src , default_sort_direction , default_username , disable_auto_admin_migration , disable_auto_hash_tag_creation , disable_blocking , disable_commenter_comment_delete , disable_commenter_comment_edit , disable_email_inputs , disable_live_commenting , disable_notification_bell , disable_profiles , disable_success_message , disable_toolbar , disable_unverified_label , disable_voting , enable_commenter_links , enable_search , enable_spoilers , enable_third_party_cookie_bypass , enable_view_counts , enable_vote_list , enable_wysiwyg , gif_rating , has_dark_background , header_html , hide_avatars , hide_comments_under_count_text_format , image_content_profanity_level , input_after_comments , limit_comments_by_groups , locale , max_comment_character_length , max_comment_created_count_pupm , no_custom_config , no_image_uploads , no_styles , page_size , readonly , no_new_root_comments , require_sso , enable_resize_handle , restricted_link_domains , show_badges_in_top_bar , show_comment_save_success , show_live_right_away , show_question , spam_rules , sso_sec_lvl , translations , use_show_comments_toggle , use_single_line_comment_input , vote_style , widget_question_id , widget_question_results_style , widget_question_style , widget_question_when_to_save , widget_questions_required , widget_sub_question_visibility , wrap ] . hash
790799 end
791800
792801 # Builds the object from hash
0 commit comments