From b66d470abe6860a8f00277ac83be40a8998eb0a8 Mon Sep 17 00:00:00 2001 From: rrenkert <19685715+rrenkert@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:38:35 +0000 Subject: [PATCH] Update meta repository --- internal/restrict/field_def.go | 14 +- meta | 2 +- pkg/datastore/dsfetch/fields_generated.go | 52 +- pkg/datastore/dskey/gen_collection_fields.go | 1723 +++++++++--------- 4 files changed, 926 insertions(+), 865 deletions(-) diff --git a/internal/restrict/field_def.go b/internal/restrict/field_def.go index 26c6db74..f86c306d 100644 --- a/internal/restrict/field_def.go +++ b/internal/restrict/field_def.go @@ -17,6 +17,7 @@ var relationFields = map[string]string{ "committee/default_meeting_id": "meeting/default_meeting_for_committee_id", "committee/forwarding_user_id": "user/forwarding_committee_ids", "committee/organization_id": "organization/committee_ids", + "gender/organization_id": "organization/gender_ids", "group/admin_group_for_meeting_id": "meeting/admin_group_id", "group/anonymous_group_for_meeting_id": "meeting/anonymous_group_id", "group/default_group_for_meeting_id": "meeting/default_group_id", @@ -176,6 +177,7 @@ var relationFields = map[string]string{ "topic/agenda_item_id": "agenda_item/content_object_id", "topic/list_of_speakers_id": "list_of_speakers/content_object_id", "topic/meeting_id": "meeting/topic_ids", + "user/gender_id": "gender/user_ids", "user/organization_id": "organization/user_ids", "vote/delegated_user_id": "user/delegated_vote_ids", "vote/meeting_id": "meeting/vote_ids", @@ -201,6 +203,7 @@ var relationListFields = map[string]string{ "committee/organization_tag_ids": "organization_tag/tagged_ids", "committee/receive_forwardings_from_committee_ids": "committee/forward_to_committee_ids", "committee/user_ids": "user/committee_ids", + "gender/user_ids": "user/gender_id", "group/meeting_mediafile_access_group_ids": "meeting_mediafile/access_group_ids", "group/meeting_mediafile_inherited_access_group_ids": "meeting_mediafile/inherited_access_group_ids", "group/meeting_user_ids": "meeting_user/group_ids", @@ -326,6 +329,7 @@ var relationListFields = map[string]string{ "organization/active_meeting_ids": "meeting/is_active_in_organization_id", "organization/archived_meeting_ids": "meeting/is_archived_in_organization_id", "organization/committee_ids": "committee/organization_id", + "organization/gender_ids": "gender/organization_id", "organization/mediafile_ids": "mediafile/owner_id", "organization/organization_tag_ids": "organization_tag/organization_id", "organization/published_mediafile_ids": "mediafile/published_to_meetings_in_organization_id", @@ -465,6 +469,12 @@ var restrictionModes = map[string]string{ "committee/manager_ids": "B", "committee/receive_forwardings_from_committee_ids": "B", + // gender + "gender/id": "A", + "gender/name": "A", + "gender/organization_id": "A", + "gender/user_ids": "A", + // group "group/admin_group_for_meeting_id": "A", "group/anonymous_group_for_meeting_id": "A", @@ -1004,7 +1014,7 @@ var restrictionModes = map[string]string{ "organization/active_meeting_ids": "A", "organization/default_language": "A", "organization/description": "A", - "organization/genders": "A", + "organization/gender_ids": "A", "organization/id": "A", "organization/legal_notice": "A", "organization/login_text": "A", @@ -1292,7 +1302,7 @@ var restrictionModes = map[string]string{ "user/default_vote_weight": "A", "user/delegated_vote_ids": "A", "user/first_name": "A", - "user/gender": "A", + "user/gender_id": "A", "user/id": "A", "user/is_demo_user": "A", "user/is_physical_person": "A", diff --git a/meta b/meta index 84bb58e1..f322efd8 160000 --- a/meta +++ b/meta @@ -1 +1 @@ -Subproject commit 84bb58e141e088f9fd0678214d5b51d040d53034 +Subproject commit f322efd81152a9b5ac864ae7145790c1673f29bf diff --git a/pkg/datastore/dsfetch/fields_generated.go b/pkg/datastore/dsfetch/fields_generated.go index a65f0f42..e4c48e35 100644 --- a/pkg/datastore/dsfetch/fields_generated.go +++ b/pkg/datastore/dsfetch/fields_generated.go @@ -1283,6 +1283,42 @@ func (r *Fetch) Committee_UserIDs(committeeID int) *ValueIntSlice { return &ValueIntSlice{fetch: r, key: key} } +func (r *Fetch) Gender_ID(genderID int) *ValueInt { + key, err := dskey.FromParts("gender", genderID, "id") + if err != nil { + return &ValueInt{err: err} + } + + return &ValueInt{fetch: r, key: key} +} + +func (r *Fetch) Gender_Name(genderID int) *ValueString { + key, err := dskey.FromParts("gender", genderID, "name") + if err != nil { + return &ValueString{err: err} + } + + return &ValueString{fetch: r, key: key, required: true} +} + +func (r *Fetch) Gender_OrganizationID(genderID int) *ValueInt { + key, err := dskey.FromParts("gender", genderID, "organization_id") + if err != nil { + return &ValueInt{err: err} + } + + return &ValueInt{fetch: r, key: key, required: true} +} + +func (r *Fetch) Gender_UserIDs(genderID int) *ValueIntSlice { + key, err := dskey.FromParts("gender", genderID, "user_ids") + if err != nil { + return &ValueIntSlice{err: err} + } + + return &ValueIntSlice{fetch: r, key: key} +} + func (r *Fetch) Group_AdminGroupForMeetingID(groupID int) *ValueMaybeInt { key, err := dskey.FromParts("group", groupID, "admin_group_for_meeting_id") if err != nil { @@ -5846,13 +5882,13 @@ func (r *Fetch) Organization_EnableElectronicVoting(organizationID int) *ValueBo return &ValueBool{fetch: r, key: key} } -func (r *Fetch) Organization_Genders(organizationID int) *ValueStringSlice { - key, err := dskey.FromParts("organization", organizationID, "genders") +func (r *Fetch) Organization_GenderIDs(organizationID int) *ValueIntSlice { + key, err := dskey.FromParts("organization", organizationID, "gender_ids") if err != nil { - return &ValueStringSlice{err: err} + return &ValueIntSlice{err: err} } - return &ValueStringSlice{fetch: r, key: key} + return &ValueIntSlice{fetch: r, key: key} } func (r *Fetch) Organization_ID(organizationID int) *ValueInt { @@ -8105,13 +8141,13 @@ func (r *Fetch) User_ForwardingCommitteeIDs(userID int) *ValueIntSlice { return &ValueIntSlice{fetch: r, key: key} } -func (r *Fetch) User_Gender(userID int) *ValueString { - key, err := dskey.FromParts("user", userID, "gender") +func (r *Fetch) User_GenderID(userID int) *ValueMaybeInt { + key, err := dskey.FromParts("user", userID, "gender_id") if err != nil { - return &ValueString{err: err} + return &ValueMaybeInt{err: err} } - return &ValueString{fetch: r, key: key} + return &ValueMaybeInt{fetch: r, key: key} } func (r *Fetch) User_ID(userID int) *ValueInt { diff --git a/pkg/datastore/dskey/gen_collection_fields.go b/pkg/datastore/dskey/gen_collection_fields.go index 002331d0..26008c58 100644 --- a/pkg/datastore/dskey/gen_collection_fields.go +++ b/pkg/datastore/dskey/gen_collection_fields.go @@ -84,6 +84,11 @@ var collectionFields = [...]collectionField{ {"committee", "organization_tag_ids"}, {"committee", "receive_forwardings_from_committee_ids"}, {"committee", "user_ids"}, + {"gender", "A"}, + {"gender", "id"}, + {"gender", "name"}, + {"gender", "organization_id"}, + {"gender", "user_ids"}, {"group", "A"}, {"group", "admin_group_for_meeting_id"}, {"group", "anonymous_group_for_meeting_id"}, @@ -620,7 +625,7 @@ var collectionFields = [...]collectionField{ {"organization", "description"}, {"organization", "enable_chat"}, {"organization", "enable_electronic_voting"}, - {"organization", "genders"}, + {"organization", "gender_ids"}, {"organization", "id"}, {"organization", "legal_notice"}, {"organization", "limit_of_meetings"}, @@ -902,7 +907,7 @@ var collectionFields = [...]collectionField{ {"user", "email"}, {"user", "first_name"}, {"user", "forwarding_committee_ids"}, - {"user", "gender"}, + {"user", "gender_id"}, {"user", "id"}, {"user", "is_active"}, {"user", "is_demo_user"}, @@ -1101,1708 +1106,1718 @@ func collectionFieldToID(cf string) int { return 80 case "committee/user_ids": return 81 - case "group/A": + case "gender/A": return 82 - case "group/admin_group_for_meeting_id": + case "gender/id": return 83 - case "group/anonymous_group_for_meeting_id": + case "gender/name": return 84 - case "group/default_group_for_meeting_id": + case "gender/organization_id": return 85 - case "group/external_id": + case "gender/user_ids": return 86 - case "group/id": + case "group/A": return 87 - case "group/meeting_id": + case "group/admin_group_for_meeting_id": return 88 - case "group/meeting_mediafile_access_group_ids": + case "group/anonymous_group_for_meeting_id": return 89 - case "group/meeting_mediafile_inherited_access_group_ids": + case "group/default_group_for_meeting_id": return 90 - case "group/meeting_user_ids": + case "group/external_id": return 91 - case "group/name": + case "group/id": return 92 - case "group/permissions": + case "group/meeting_id": return 93 - case "group/poll_ids": + case "group/meeting_mediafile_access_group_ids": return 94 - case "group/read_chat_group_ids": + case "group/meeting_mediafile_inherited_access_group_ids": return 95 - case "group/read_comment_section_ids": + case "group/meeting_user_ids": return 96 - case "group/used_as_assignment_poll_default_id": + case "group/name": return 97 - case "group/used_as_motion_poll_default_id": + case "group/permissions": return 98 - case "group/used_as_poll_default_id": + case "group/poll_ids": return 99 - case "group/used_as_topic_poll_default_id": + case "group/read_chat_group_ids": return 100 - case "group/weight": + case "group/read_comment_section_ids": return 101 - case "group/write_chat_group_ids": + case "group/used_as_assignment_poll_default_id": return 102 - case "group/write_comment_section_ids": + case "group/used_as_motion_poll_default_id": return 103 - case "import_preview/A": + case "group/used_as_poll_default_id": return 104 - case "import_preview/created": + case "group/used_as_topic_poll_default_id": return 105 - case "import_preview/id": + case "group/weight": return 106 - case "import_preview/name": + case "group/write_chat_group_ids": return 107 - case "import_preview/result": + case "group/write_comment_section_ids": return 108 - case "import_preview/state": + case "import_preview/A": return 109 - case "list_of_speakers/A": + case "import_preview/created": return 110 - case "list_of_speakers/closed": + case "import_preview/id": return 111 - case "list_of_speakers/content_object_id": + case "import_preview/name": return 112 - case "list_of_speakers/id": + case "import_preview/result": return 113 - case "list_of_speakers/meeting_id": + case "import_preview/state": return 114 - case "list_of_speakers/projection_ids": + case "list_of_speakers/A": return 115 - case "list_of_speakers/sequential_number": + case "list_of_speakers/closed": return 116 - case "list_of_speakers/speaker_ids": + case "list_of_speakers/content_object_id": return 117 - case "list_of_speakers/structure_level_list_of_speakers_ids": + case "list_of_speakers/id": return 118 - case "mediafile/A": + case "list_of_speakers/meeting_id": return 119 - case "mediafile/child_ids": + case "list_of_speakers/projection_ids": return 120 - case "mediafile/create_timestamp": + case "list_of_speakers/sequential_number": return 121 - case "mediafile/filename": + case "list_of_speakers/speaker_ids": return 122 - case "mediafile/filesize": + case "list_of_speakers/structure_level_list_of_speakers_ids": return 123 - case "mediafile/id": + case "mediafile/A": return 124 - case "mediafile/is_directory": + case "mediafile/child_ids": return 125 - case "mediafile/meeting_mediafile_ids": + case "mediafile/create_timestamp": return 126 - case "mediafile/mimetype": + case "mediafile/filename": return 127 - case "mediafile/owner_id": + case "mediafile/filesize": return 128 - case "mediafile/parent_id": + case "mediafile/id": return 129 - case "mediafile/pdf_information": + case "mediafile/is_directory": return 130 - case "mediafile/published_to_meetings_in_organization_id": + case "mediafile/meeting_mediafile_ids": return 131 - case "mediafile/title": + case "mediafile/mimetype": return 132 - case "mediafile/token": + case "mediafile/owner_id": return 133 - case "meeting/A": + case "mediafile/parent_id": return 134 - case "meeting/B": + case "mediafile/pdf_information": return 135 - case "meeting/C": + case "mediafile/published_to_meetings_in_organization_id": return 136 - case "meeting/admin_group_id": + case "mediafile/title": return 137 - case "meeting/agenda_enable_numbering": + case "mediafile/token": return 138 - case "meeting/agenda_item_creation": + case "meeting/A": return 139 - case "meeting/agenda_item_ids": + case "meeting/B": return 140 - case "meeting/agenda_new_items_default_visibility": + case "meeting/C": return 141 - case "meeting/agenda_number_prefix": + case "meeting/admin_group_id": return 142 - case "meeting/agenda_numeral_system": + case "meeting/agenda_enable_numbering": return 143 - case "meeting/agenda_show_internal_items_on_projector": + case "meeting/agenda_item_creation": return 144 - case "meeting/agenda_show_subtitles": + case "meeting/agenda_item_ids": return 145 - case "meeting/agenda_show_topic_navigation_on_detail_view": + case "meeting/agenda_new_items_default_visibility": return 146 - case "meeting/all_projection_ids": + case "meeting/agenda_number_prefix": return 147 - case "meeting/anonymous_group_id": + case "meeting/agenda_numeral_system": return 148 - case "meeting/applause_enable": + case "meeting/agenda_show_internal_items_on_projector": return 149 - case "meeting/applause_max_amount": + case "meeting/agenda_show_subtitles": return 150 - case "meeting/applause_min_amount": + case "meeting/agenda_show_topic_navigation_on_detail_view": return 151 - case "meeting/applause_particle_image_url": + case "meeting/all_projection_ids": return 152 - case "meeting/applause_show_level": + case "meeting/anonymous_group_id": return 153 - case "meeting/applause_timeout": + case "meeting/applause_enable": return 154 - case "meeting/applause_type": + case "meeting/applause_max_amount": return 155 - case "meeting/assignment_candidate_ids": + case "meeting/applause_min_amount": return 156 - case "meeting/assignment_ids": + case "meeting/applause_particle_image_url": return 157 - case "meeting/assignment_poll_add_candidates_to_list_of_speakers": + case "meeting/applause_show_level": return 158 - case "meeting/assignment_poll_ballot_paper_number": + case "meeting/applause_timeout": return 159 - case "meeting/assignment_poll_ballot_paper_selection": + case "meeting/applause_type": return 160 - case "meeting/assignment_poll_default_backend": + case "meeting/assignment_candidate_ids": return 161 - case "meeting/assignment_poll_default_group_ids": + case "meeting/assignment_ids": return 162 - case "meeting/assignment_poll_default_method": + case "meeting/assignment_poll_add_candidates_to_list_of_speakers": return 163 - case "meeting/assignment_poll_default_onehundred_percent_base": + case "meeting/assignment_poll_ballot_paper_number": return 164 - case "meeting/assignment_poll_default_type": + case "meeting/assignment_poll_ballot_paper_selection": return 165 - case "meeting/assignment_poll_enable_max_votes_per_option": + case "meeting/assignment_poll_default_backend": return 166 - case "meeting/assignment_poll_sort_poll_result_by_votes": + case "meeting/assignment_poll_default_group_ids": return 167 - case "meeting/assignments_export_preamble": + case "meeting/assignment_poll_default_method": return 168 - case "meeting/assignments_export_title": + case "meeting/assignment_poll_default_onehundred_percent_base": return 169 - case "meeting/chat_group_ids": + case "meeting/assignment_poll_default_type": return 170 - case "meeting/chat_message_ids": + case "meeting/assignment_poll_enable_max_votes_per_option": return 171 - case "meeting/committee_id": + case "meeting/assignment_poll_sort_poll_result_by_votes": return 172 - case "meeting/conference_auto_connect": + case "meeting/assignments_export_preamble": return 173 - case "meeting/conference_auto_connect_next_speakers": + case "meeting/assignments_export_title": return 174 - case "meeting/conference_enable_helpdesk": + case "meeting/chat_group_ids": return 175 - case "meeting/conference_los_restriction": + case "meeting/chat_message_ids": return 176 - case "meeting/conference_open_microphone": + case "meeting/committee_id": return 177 - case "meeting/conference_open_video": + case "meeting/conference_auto_connect": return 178 - case "meeting/conference_show": + case "meeting/conference_auto_connect_next_speakers": return 179 - case "meeting/conference_stream_poster_url": + case "meeting/conference_enable_helpdesk": return 180 - case "meeting/conference_stream_url": + case "meeting/conference_los_restriction": return 181 - case "meeting/custom_translations": + case "meeting/conference_open_microphone": return 182 - case "meeting/default_group_id": + case "meeting/conference_open_video": return 183 - case "meeting/default_meeting_for_committee_id": + case "meeting/conference_show": return 184 - case "meeting/default_projector_agenda_item_list_ids": + case "meeting/conference_stream_poster_url": return 185 - case "meeting/default_projector_amendment_ids": + case "meeting/conference_stream_url": return 186 - case "meeting/default_projector_assignment_ids": + case "meeting/custom_translations": return 187 - case "meeting/default_projector_assignment_poll_ids": + case "meeting/default_group_id": return 188 - case "meeting/default_projector_countdown_ids": + case "meeting/default_meeting_for_committee_id": return 189 - case "meeting/default_projector_current_list_of_speakers_ids": + case "meeting/default_projector_agenda_item_list_ids": return 190 - case "meeting/default_projector_list_of_speakers_ids": + case "meeting/default_projector_amendment_ids": return 191 - case "meeting/default_projector_mediafile_ids": + case "meeting/default_projector_assignment_ids": return 192 - case "meeting/default_projector_message_ids": + case "meeting/default_projector_assignment_poll_ids": return 193 - case "meeting/default_projector_motion_block_ids": + case "meeting/default_projector_countdown_ids": return 194 - case "meeting/default_projector_motion_ids": + case "meeting/default_projector_current_list_of_speakers_ids": return 195 - case "meeting/default_projector_motion_poll_ids": + case "meeting/default_projector_list_of_speakers_ids": return 196 - case "meeting/default_projector_poll_ids": + case "meeting/default_projector_mediafile_ids": return 197 - case "meeting/default_projector_topic_ids": + case "meeting/default_projector_message_ids": return 198 - case "meeting/description": + case "meeting/default_projector_motion_block_ids": return 199 - case "meeting/enable_anonymous": + case "meeting/default_projector_motion_ids": return 200 - case "meeting/end_time": + case "meeting/default_projector_motion_poll_ids": return 201 - case "meeting/export_csv_encoding": + case "meeting/default_projector_poll_ids": return 202 - case "meeting/export_csv_separator": + case "meeting/default_projector_topic_ids": return 203 - case "meeting/export_pdf_fontsize": + case "meeting/description": return 204 - case "meeting/export_pdf_line_height": + case "meeting/enable_anonymous": return 205 - case "meeting/export_pdf_page_margin_bottom": + case "meeting/end_time": return 206 - case "meeting/export_pdf_page_margin_left": + case "meeting/export_csv_encoding": return 207 - case "meeting/export_pdf_page_margin_right": + case "meeting/export_csv_separator": return 208 - case "meeting/export_pdf_page_margin_top": + case "meeting/export_pdf_fontsize": return 209 - case "meeting/export_pdf_pagenumber_alignment": + case "meeting/export_pdf_line_height": return 210 - case "meeting/export_pdf_pagesize": + case "meeting/export_pdf_page_margin_bottom": return 211 - case "meeting/external_id": + case "meeting/export_pdf_page_margin_left": return 212 - case "meeting/font_bold_id": + case "meeting/export_pdf_page_margin_right": return 213 - case "meeting/font_bold_italic_id": + case "meeting/export_pdf_page_margin_top": return 214 - case "meeting/font_chyron_speaker_name_id": + case "meeting/export_pdf_pagenumber_alignment": return 215 - case "meeting/font_italic_id": + case "meeting/export_pdf_pagesize": return 216 - case "meeting/font_monospace_id": + case "meeting/external_id": return 217 - case "meeting/font_projector_h1_id": + case "meeting/font_bold_id": return 218 - case "meeting/font_projector_h2_id": + case "meeting/font_bold_italic_id": return 219 - case "meeting/font_regular_id": + case "meeting/font_chyron_speaker_name_id": return 220 - case "meeting/forwarded_motion_ids": + case "meeting/font_italic_id": return 221 - case "meeting/group_ids": + case "meeting/font_monospace_id": return 222 - case "meeting/id": + case "meeting/font_projector_h1_id": return 223 - case "meeting/imported_at": + case "meeting/font_projector_h2_id": return 224 - case "meeting/is_active_in_organization_id": + case "meeting/font_regular_id": return 225 - case "meeting/is_archived_in_organization_id": + case "meeting/forwarded_motion_ids": return 226 - case "meeting/jitsi_domain": + case "meeting/group_ids": return 227 - case "meeting/jitsi_room_name": + case "meeting/id": return 228 - case "meeting/jitsi_room_password": + case "meeting/imported_at": return 229 - case "meeting/language": + case "meeting/is_active_in_organization_id": return 230 - case "meeting/list_of_speakers_allow_multiple_speakers": + case "meeting/is_archived_in_organization_id": return 231 - case "meeting/list_of_speakers_amount_last_on_projector": + case "meeting/jitsi_domain": return 232 - case "meeting/list_of_speakers_amount_next_on_projector": + case "meeting/jitsi_room_name": return 233 - case "meeting/list_of_speakers_can_create_point_of_order_for_others": + case "meeting/jitsi_room_password": return 234 - case "meeting/list_of_speakers_can_set_contribution_self": + case "meeting/language": return 235 - case "meeting/list_of_speakers_closing_disables_point_of_order": + case "meeting/list_of_speakers_allow_multiple_speakers": return 236 - case "meeting/list_of_speakers_countdown_id": + case "meeting/list_of_speakers_amount_last_on_projector": return 237 - case "meeting/list_of_speakers_couple_countdown": + case "meeting/list_of_speakers_amount_next_on_projector": return 238 - case "meeting/list_of_speakers_default_structure_level_time": + case "meeting/list_of_speakers_can_create_point_of_order_for_others": return 239 - case "meeting/list_of_speakers_enable_interposed_question": + case "meeting/list_of_speakers_can_set_contribution_self": return 240 - case "meeting/list_of_speakers_enable_point_of_order_categories": + case "meeting/list_of_speakers_closing_disables_point_of_order": return 241 - case "meeting/list_of_speakers_enable_point_of_order_speakers": + case "meeting/list_of_speakers_countdown_id": return 242 - case "meeting/list_of_speakers_enable_pro_contra_speech": + case "meeting/list_of_speakers_couple_countdown": return 243 - case "meeting/list_of_speakers_hide_contribution_count": + case "meeting/list_of_speakers_default_structure_level_time": return 244 - case "meeting/list_of_speakers_ids": + case "meeting/list_of_speakers_enable_interposed_question": return 245 - case "meeting/list_of_speakers_initially_closed": + case "meeting/list_of_speakers_enable_point_of_order_categories": return 246 - case "meeting/list_of_speakers_intervention_time": + case "meeting/list_of_speakers_enable_point_of_order_speakers": return 247 - case "meeting/list_of_speakers_present_users_only": + case "meeting/list_of_speakers_enable_pro_contra_speech": return 248 - case "meeting/list_of_speakers_show_amount_of_speakers_on_slide": + case "meeting/list_of_speakers_hide_contribution_count": return 249 - case "meeting/list_of_speakers_show_first_contribution": + case "meeting/list_of_speakers_ids": return 250 - case "meeting/list_of_speakers_speaker_note_for_everyone": + case "meeting/list_of_speakers_initially_closed": return 251 - case "meeting/location": + case "meeting/list_of_speakers_intervention_time": return 252 - case "meeting/locked_from_inside": + case "meeting/list_of_speakers_present_users_only": return 253 - case "meeting/logo_pdf_ballot_paper_id": + case "meeting/list_of_speakers_show_amount_of_speakers_on_slide": return 254 - case "meeting/logo_pdf_footer_l_id": + case "meeting/list_of_speakers_show_first_contribution": return 255 - case "meeting/logo_pdf_footer_r_id": + case "meeting/list_of_speakers_speaker_note_for_everyone": return 256 - case "meeting/logo_pdf_header_l_id": + case "meeting/location": return 257 - case "meeting/logo_pdf_header_r_id": + case "meeting/locked_from_inside": return 258 - case "meeting/logo_projector_header_id": + case "meeting/logo_pdf_ballot_paper_id": return 259 - case "meeting/logo_projector_main_id": + case "meeting/logo_pdf_footer_l_id": return 260 - case "meeting/logo_web_header_id": + case "meeting/logo_pdf_footer_r_id": return 261 - case "meeting/mediafile_ids": + case "meeting/logo_pdf_header_l_id": return 262 - case "meeting/meeting_mediafile_ids": + case "meeting/logo_pdf_header_r_id": return 263 - case "meeting/meeting_user_ids": + case "meeting/logo_projector_header_id": return 264 - case "meeting/motion_block_ids": + case "meeting/logo_projector_main_id": return 265 - case "meeting/motion_category_ids": + case "meeting/logo_web_header_id": return 266 - case "meeting/motion_change_recommendation_ids": + case "meeting/mediafile_ids": return 267 - case "meeting/motion_comment_ids": + case "meeting/meeting_mediafile_ids": return 268 - case "meeting/motion_comment_section_ids": + case "meeting/meeting_user_ids": return 269 - case "meeting/motion_editor_ids": + case "meeting/motion_block_ids": return 270 - case "meeting/motion_ids": + case "meeting/motion_category_ids": return 271 - case "meeting/motion_poll_ballot_paper_number": + case "meeting/motion_change_recommendation_ids": return 272 - case "meeting/motion_poll_ballot_paper_selection": + case "meeting/motion_comment_ids": return 273 - case "meeting/motion_poll_default_backend": + case "meeting/motion_comment_section_ids": return 274 - case "meeting/motion_poll_default_group_ids": + case "meeting/motion_editor_ids": return 275 - case "meeting/motion_poll_default_method": + case "meeting/motion_ids": return 276 - case "meeting/motion_poll_default_onehundred_percent_base": + case "meeting/motion_poll_ballot_paper_number": return 277 - case "meeting/motion_poll_default_type": + case "meeting/motion_poll_ballot_paper_selection": return 278 - case "meeting/motion_state_ids": + case "meeting/motion_poll_default_backend": return 279 - case "meeting/motion_statute_paragraph_ids": + case "meeting/motion_poll_default_group_ids": return 280 - case "meeting/motion_submitter_ids": + case "meeting/motion_poll_default_method": return 281 - case "meeting/motion_workflow_ids": + case "meeting/motion_poll_default_onehundred_percent_base": return 282 - case "meeting/motion_working_group_speaker_ids": + case "meeting/motion_poll_default_type": return 283 - case "meeting/motions_amendments_enabled": + case "meeting/motion_state_ids": return 284 - case "meeting/motions_amendments_in_main_list": + case "meeting/motion_statute_paragraph_ids": return 285 - case "meeting/motions_amendments_multiple_paragraphs": + case "meeting/motion_submitter_ids": return 286 - case "meeting/motions_amendments_of_amendments": + case "meeting/motion_workflow_ids": return 287 - case "meeting/motions_amendments_prefix": + case "meeting/motion_working_group_speaker_ids": return 288 - case "meeting/motions_amendments_text_mode": + case "meeting/motions_amendments_enabled": return 289 - case "meeting/motions_block_slide_columns": + case "meeting/motions_amendments_in_main_list": return 290 - case "meeting/motions_default_amendment_workflow_id": + case "meeting/motions_amendments_multiple_paragraphs": return 291 - case "meeting/motions_default_line_numbering": + case "meeting/motions_amendments_of_amendments": return 292 - case "meeting/motions_default_sorting": + case "meeting/motions_amendments_prefix": return 293 - case "meeting/motions_default_statute_amendment_workflow_id": + case "meeting/motions_amendments_text_mode": return 294 - case "meeting/motions_default_workflow_id": + case "meeting/motions_block_slide_columns": return 295 - case "meeting/motions_enable_editor": + case "meeting/motions_default_amendment_workflow_id": return 296 - case "meeting/motions_enable_reason_on_projector": + case "meeting/motions_default_line_numbering": return 297 - case "meeting/motions_enable_recommendation_on_projector": + case "meeting/motions_default_sorting": return 298 - case "meeting/motions_enable_sidebox_on_projector": + case "meeting/motions_default_statute_amendment_workflow_id": return 299 - case "meeting/motions_enable_text_on_projector": + case "meeting/motions_default_workflow_id": return 300 - case "meeting/motions_enable_working_group_speaker": + case "meeting/motions_enable_editor": return 301 - case "meeting/motions_export_follow_recommendation": + case "meeting/motions_enable_reason_on_projector": return 302 - case "meeting/motions_export_preamble": + case "meeting/motions_enable_recommendation_on_projector": return 303 - case "meeting/motions_export_submitter_recommendation": + case "meeting/motions_enable_sidebox_on_projector": return 304 - case "meeting/motions_export_title": + case "meeting/motions_enable_text_on_projector": return 305 - case "meeting/motions_line_length": + case "meeting/motions_enable_working_group_speaker": return 306 - case "meeting/motions_number_min_digits": + case "meeting/motions_export_follow_recommendation": return 307 - case "meeting/motions_number_type": + case "meeting/motions_export_preamble": return 308 - case "meeting/motions_number_with_blank": + case "meeting/motions_export_submitter_recommendation": return 309 - case "meeting/motions_preamble": + case "meeting/motions_export_title": return 310 - case "meeting/motions_reason_required": + case "meeting/motions_line_length": return 311 - case "meeting/motions_recommendation_text_mode": + case "meeting/motions_number_min_digits": return 312 - case "meeting/motions_recommendations_by": + case "meeting/motions_number_type": return 313 - case "meeting/motions_show_referring_motions": + case "meeting/motions_number_with_blank": return 314 - case "meeting/motions_show_sequential_number": + case "meeting/motions_preamble": return 315 - case "meeting/motions_statute_recommendations_by": + case "meeting/motions_reason_required": return 316 - case "meeting/motions_statutes_enabled": + case "meeting/motions_recommendation_text_mode": return 317 - case "meeting/motions_supporters_min_amount": + case "meeting/motions_recommendations_by": return 318 - case "meeting/name": + case "meeting/motions_show_referring_motions": return 319 - case "meeting/option_ids": + case "meeting/motions_show_sequential_number": return 320 - case "meeting/organization_tag_ids": + case "meeting/motions_statute_recommendations_by": return 321 - case "meeting/personal_note_ids": + case "meeting/motions_statutes_enabled": return 322 - case "meeting/point_of_order_category_ids": + case "meeting/motions_supporters_min_amount": return 323 - case "meeting/poll_ballot_paper_number": + case "meeting/name": return 324 - case "meeting/poll_ballot_paper_selection": + case "meeting/option_ids": return 325 - case "meeting/poll_candidate_ids": + case "meeting/organization_tag_ids": return 326 - case "meeting/poll_candidate_list_ids": + case "meeting/personal_note_ids": return 327 - case "meeting/poll_countdown_id": + case "meeting/point_of_order_category_ids": return 328 - case "meeting/poll_couple_countdown": + case "meeting/poll_ballot_paper_number": return 329 - case "meeting/poll_default_backend": + case "meeting/poll_ballot_paper_selection": return 330 - case "meeting/poll_default_group_ids": + case "meeting/poll_candidate_ids": return 331 - case "meeting/poll_default_method": + case "meeting/poll_candidate_list_ids": return 332 - case "meeting/poll_default_onehundred_percent_base": + case "meeting/poll_countdown_id": return 333 - case "meeting/poll_default_type": + case "meeting/poll_couple_countdown": return 334 - case "meeting/poll_ids": + case "meeting/poll_default_backend": return 335 - case "meeting/poll_sort_poll_result_by_votes": + case "meeting/poll_default_group_ids": return 336 - case "meeting/present_user_ids": + case "meeting/poll_default_method": return 337 - case "meeting/projection_ids": + case "meeting/poll_default_onehundred_percent_base": return 338 - case "meeting/projector_countdown_default_time": + case "meeting/poll_default_type": return 339 - case "meeting/projector_countdown_ids": + case "meeting/poll_ids": return 340 - case "meeting/projector_countdown_warning_time": + case "meeting/poll_sort_poll_result_by_votes": return 341 - case "meeting/projector_ids": + case "meeting/present_user_ids": return 342 - case "meeting/projector_message_ids": + case "meeting/projection_ids": return 343 - case "meeting/reference_projector_id": + case "meeting/projector_countdown_default_time": return 344 - case "meeting/speaker_ids": + case "meeting/projector_countdown_ids": return 345 - case "meeting/start_time": + case "meeting/projector_countdown_warning_time": return 346 - case "meeting/structure_level_ids": + case "meeting/projector_ids": return 347 - case "meeting/structure_level_list_of_speakers_ids": + case "meeting/projector_message_ids": return 348 - case "meeting/tag_ids": + case "meeting/reference_projector_id": return 349 - case "meeting/template_for_organization_id": + case "meeting/speaker_ids": return 350 - case "meeting/topic_ids": + case "meeting/start_time": return 351 - case "meeting/topic_poll_default_group_ids": + case "meeting/structure_level_ids": return 352 - case "meeting/user_ids": + case "meeting/structure_level_list_of_speakers_ids": return 353 - case "meeting/users_allow_self_set_present": + case "meeting/tag_ids": return 354 - case "meeting/users_email_body": + case "meeting/template_for_organization_id": return 355 - case "meeting/users_email_replyto": + case "meeting/topic_ids": return 356 - case "meeting/users_email_sender": + case "meeting/topic_poll_default_group_ids": return 357 - case "meeting/users_email_subject": + case "meeting/user_ids": return 358 - case "meeting/users_enable_presence_view": + case "meeting/users_allow_self_set_present": return 359 - case "meeting/users_enable_vote_delegations": + case "meeting/users_email_body": return 360 - case "meeting/users_enable_vote_weight": + case "meeting/users_email_replyto": return 361 - case "meeting/users_forbid_delegator_as_submitter": + case "meeting/users_email_sender": return 362 - case "meeting/users_forbid_delegator_as_supporter": + case "meeting/users_email_subject": return 363 - case "meeting/users_forbid_delegator_in_list_of_speakers": + case "meeting/users_enable_presence_view": return 364 - case "meeting/users_forbid_delegator_to_vote": + case "meeting/users_enable_vote_delegations": return 365 - case "meeting/users_pdf_welcometext": + case "meeting/users_enable_vote_weight": return 366 - case "meeting/users_pdf_welcometitle": + case "meeting/users_forbid_delegator_as_submitter": return 367 - case "meeting/users_pdf_wlan_encryption": + case "meeting/users_forbid_delegator_as_supporter": return 368 - case "meeting/users_pdf_wlan_password": + case "meeting/users_forbid_delegator_in_list_of_speakers": return 369 - case "meeting/users_pdf_wlan_ssid": + case "meeting/users_forbid_delegator_to_vote": return 370 - case "meeting/vote_ids": + case "meeting/users_pdf_welcometext": return 371 - case "meeting/welcome_text": + case "meeting/users_pdf_welcometitle": return 372 - case "meeting/welcome_title": + case "meeting/users_pdf_wlan_encryption": return 373 - case "meeting_mediafile/A": + case "meeting/users_pdf_wlan_password": return 374 - case "meeting_mediafile/access_group_ids": + case "meeting/users_pdf_wlan_ssid": return 375 - case "meeting_mediafile/attachment_ids": + case "meeting/vote_ids": return 376 - case "meeting_mediafile/id": + case "meeting/welcome_text": return 377 - case "meeting_mediafile/inherited_access_group_ids": + case "meeting/welcome_title": return 378 - case "meeting_mediafile/is_public": + case "meeting_mediafile/A": return 379 - case "meeting_mediafile/list_of_speakers_id": + case "meeting_mediafile/access_group_ids": return 380 - case "meeting_mediafile/mediafile_id": + case "meeting_mediafile/attachment_ids": return 381 - case "meeting_mediafile/meeting_id": + case "meeting_mediafile/id": return 382 - case "meeting_mediafile/projection_ids": + case "meeting_mediafile/inherited_access_group_ids": return 383 - case "meeting_mediafile/used_as_font_bold_in_meeting_id": + case "meeting_mediafile/is_public": return 384 - case "meeting_mediafile/used_as_font_bold_italic_in_meeting_id": + case "meeting_mediafile/list_of_speakers_id": return 385 - case "meeting_mediafile/used_as_font_chyron_speaker_name_in_meeting_id": + case "meeting_mediafile/mediafile_id": return 386 - case "meeting_mediafile/used_as_font_italic_in_meeting_id": + case "meeting_mediafile/meeting_id": return 387 - case "meeting_mediafile/used_as_font_monospace_in_meeting_id": + case "meeting_mediafile/projection_ids": return 388 - case "meeting_mediafile/used_as_font_projector_h1_in_meeting_id": + case "meeting_mediafile/used_as_font_bold_in_meeting_id": return 389 - case "meeting_mediafile/used_as_font_projector_h2_in_meeting_id": + case "meeting_mediafile/used_as_font_bold_italic_in_meeting_id": return 390 - case "meeting_mediafile/used_as_font_regular_in_meeting_id": + case "meeting_mediafile/used_as_font_chyron_speaker_name_in_meeting_id": return 391 - case "meeting_mediafile/used_as_logo_pdf_ballot_paper_in_meeting_id": + case "meeting_mediafile/used_as_font_italic_in_meeting_id": return 392 - case "meeting_mediafile/used_as_logo_pdf_footer_l_in_meeting_id": + case "meeting_mediafile/used_as_font_monospace_in_meeting_id": return 393 - case "meeting_mediafile/used_as_logo_pdf_footer_r_in_meeting_id": + case "meeting_mediafile/used_as_font_projector_h1_in_meeting_id": return 394 - case "meeting_mediafile/used_as_logo_pdf_header_l_in_meeting_id": + case "meeting_mediafile/used_as_font_projector_h2_in_meeting_id": return 395 - case "meeting_mediafile/used_as_logo_pdf_header_r_in_meeting_id": + case "meeting_mediafile/used_as_font_regular_in_meeting_id": return 396 - case "meeting_mediafile/used_as_logo_projector_header_in_meeting_id": + case "meeting_mediafile/used_as_logo_pdf_ballot_paper_in_meeting_id": return 397 - case "meeting_mediafile/used_as_logo_projector_main_in_meeting_id": + case "meeting_mediafile/used_as_logo_pdf_footer_l_in_meeting_id": return 398 - case "meeting_mediafile/used_as_logo_web_header_in_meeting_id": + case "meeting_mediafile/used_as_logo_pdf_footer_r_in_meeting_id": return 399 - case "meeting_user/A": + case "meeting_mediafile/used_as_logo_pdf_header_l_in_meeting_id": return 400 - case "meeting_user/B": + case "meeting_mediafile/used_as_logo_pdf_header_r_in_meeting_id": return 401 - case "meeting_user/D": + case "meeting_mediafile/used_as_logo_projector_header_in_meeting_id": return 402 - case "meeting_user/E": + case "meeting_mediafile/used_as_logo_projector_main_in_meeting_id": return 403 - case "meeting_user/about_me": + case "meeting_mediafile/used_as_logo_web_header_in_meeting_id": return 404 - case "meeting_user/assignment_candidate_ids": + case "meeting_user/A": return 405 - case "meeting_user/chat_message_ids": + case "meeting_user/B": return 406 - case "meeting_user/comment": + case "meeting_user/D": return 407 - case "meeting_user/group_ids": + case "meeting_user/E": return 408 - case "meeting_user/id": + case "meeting_user/about_me": return 409 - case "meeting_user/locked_out": + case "meeting_user/assignment_candidate_ids": return 410 - case "meeting_user/meeting_id": + case "meeting_user/chat_message_ids": return 411 - case "meeting_user/motion_editor_ids": + case "meeting_user/comment": return 412 - case "meeting_user/motion_submitter_ids": + case "meeting_user/group_ids": return 413 - case "meeting_user/motion_working_group_speaker_ids": + case "meeting_user/id": return 414 - case "meeting_user/number": + case "meeting_user/locked_out": return 415 - case "meeting_user/personal_note_ids": + case "meeting_user/meeting_id": return 416 - case "meeting_user/speaker_ids": + case "meeting_user/motion_editor_ids": return 417 - case "meeting_user/structure_level_ids": + case "meeting_user/motion_submitter_ids": return 418 - case "meeting_user/supported_motion_ids": + case "meeting_user/motion_working_group_speaker_ids": return 419 - case "meeting_user/user_id": + case "meeting_user/number": return 420 - case "meeting_user/vote_delegated_to_id": + case "meeting_user/personal_note_ids": return 421 - case "meeting_user/vote_delegations_from_ids": + case "meeting_user/speaker_ids": return 422 - case "meeting_user/vote_weight": + case "meeting_user/structure_level_ids": return 423 - case "motion/A": + case "meeting_user/supported_motion_ids": return 424 - case "motion/B": + case "meeting_user/user_id": return 425 - case "motion/C": + case "meeting_user/vote_delegated_to_id": return 426 - case "motion/D": + case "meeting_user/vote_delegations_from_ids": return 427 - case "motion/E": + case "meeting_user/vote_weight": return 428 - case "motion/additional_submitter": + case "motion/A": return 429 - case "motion/agenda_item_id": + case "motion/B": return 430 - case "motion/all_derived_motion_ids": + case "motion/C": return 431 - case "motion/all_origin_ids": + case "motion/D": return 432 - case "motion/amendment_ids": + case "motion/E": return 433 - case "motion/amendment_paragraphs": + case "motion/additional_submitter": return 434 - case "motion/attachment_meeting_mediafile_ids": + case "motion/agenda_item_id": return 435 - case "motion/block_id": + case "motion/all_derived_motion_ids": return 436 - case "motion/category_id": + case "motion/all_origin_ids": return 437 - case "motion/category_weight": + case "motion/amendment_ids": return 438 - case "motion/change_recommendation_ids": + case "motion/amendment_paragraphs": return 439 - case "motion/comment_ids": + case "motion/attachment_meeting_mediafile_ids": return 440 - case "motion/created": + case "motion/block_id": return 441 - case "motion/derived_motion_ids": + case "motion/category_id": return 442 - case "motion/editor_ids": + case "motion/category_weight": return 443 - case "motion/forwarded": + case "motion/change_recommendation_ids": return 444 - case "motion/id": + case "motion/comment_ids": return 445 - case "motion/identical_motion_ids": + case "motion/created": return 446 - case "motion/last_modified": + case "motion/derived_motion_ids": return 447 - case "motion/lead_motion_id": + case "motion/editor_ids": return 448 - case "motion/list_of_speakers_id": + case "motion/forwarded": return 449 - case "motion/meeting_id": + case "motion/id": return 450 - case "motion/modified_final_version": + case "motion/identical_motion_ids": return 451 - case "motion/number": + case "motion/last_modified": return 452 - case "motion/number_value": + case "motion/lead_motion_id": return 453 - case "motion/option_ids": + case "motion/list_of_speakers_id": return 454 - case "motion/origin_id": + case "motion/meeting_id": return 455 - case "motion/origin_meeting_id": + case "motion/modified_final_version": return 456 - case "motion/personal_note_ids": + case "motion/number": return 457 - case "motion/poll_ids": + case "motion/number_value": return 458 - case "motion/projection_ids": + case "motion/option_ids": return 459 - case "motion/reason": + case "motion/origin_id": return 460 - case "motion/recommendation_extension": + case "motion/origin_meeting_id": return 461 - case "motion/recommendation_extension_reference_ids": + case "motion/personal_note_ids": return 462 - case "motion/recommendation_id": + case "motion/poll_ids": return 463 - case "motion/referenced_in_motion_recommendation_extension_ids": + case "motion/projection_ids": return 464 - case "motion/referenced_in_motion_state_extension_ids": + case "motion/reason": return 465 - case "motion/sequential_number": + case "motion/recommendation_extension": return 466 - case "motion/sort_child_ids": + case "motion/recommendation_extension_reference_ids": return 467 - case "motion/sort_parent_id": + case "motion/recommendation_id": return 468 - case "motion/sort_weight": + case "motion/referenced_in_motion_recommendation_extension_ids": return 469 - case "motion/start_line_number": + case "motion/referenced_in_motion_state_extension_ids": return 470 - case "motion/state_extension": + case "motion/sequential_number": return 471 - case "motion/state_extension_reference_ids": + case "motion/sort_child_ids": return 472 - case "motion/state_id": + case "motion/sort_parent_id": return 473 - case "motion/statute_paragraph_id": + case "motion/sort_weight": return 474 - case "motion/submitter_ids": + case "motion/start_line_number": return 475 - case "motion/supporter_meeting_user_ids": + case "motion/state_extension": return 476 - case "motion/tag_ids": + case "motion/state_extension_reference_ids": return 477 - case "motion/text": + case "motion/state_id": return 478 - case "motion/text_hash": + case "motion/statute_paragraph_id": return 479 - case "motion/title": + case "motion/submitter_ids": return 480 - case "motion/workflow_timestamp": + case "motion/supporter_meeting_user_ids": return 481 - case "motion/working_group_speaker_ids": + case "motion/tag_ids": return 482 - case "motion_block/A": + case "motion/text": return 483 - case "motion_block/agenda_item_id": + case "motion/text_hash": return 484 - case "motion_block/id": + case "motion/title": return 485 - case "motion_block/internal": + case "motion/workflow_timestamp": return 486 - case "motion_block/list_of_speakers_id": + case "motion/working_group_speaker_ids": return 487 - case "motion_block/meeting_id": + case "motion_block/A": return 488 - case "motion_block/motion_ids": + case "motion_block/agenda_item_id": return 489 - case "motion_block/projection_ids": + case "motion_block/id": return 490 - case "motion_block/sequential_number": + case "motion_block/internal": return 491 - case "motion_block/title": + case "motion_block/list_of_speakers_id": return 492 - case "motion_category/A": + case "motion_block/meeting_id": return 493 - case "motion_category/child_ids": + case "motion_block/motion_ids": return 494 - case "motion_category/id": + case "motion_block/projection_ids": return 495 - case "motion_category/level": + case "motion_block/sequential_number": return 496 - case "motion_category/meeting_id": + case "motion_block/title": return 497 - case "motion_category/motion_ids": + case "motion_category/A": return 498 - case "motion_category/name": + case "motion_category/child_ids": return 499 - case "motion_category/parent_id": + case "motion_category/id": return 500 - case "motion_category/prefix": + case "motion_category/level": return 501 - case "motion_category/sequential_number": + case "motion_category/meeting_id": return 502 - case "motion_category/weight": + case "motion_category/motion_ids": return 503 - case "motion_change_recommendation/A": + case "motion_category/name": return 504 - case "motion_change_recommendation/creation_time": + case "motion_category/parent_id": return 505 - case "motion_change_recommendation/id": + case "motion_category/prefix": return 506 - case "motion_change_recommendation/internal": + case "motion_category/sequential_number": return 507 - case "motion_change_recommendation/line_from": + case "motion_category/weight": return 508 - case "motion_change_recommendation/line_to": + case "motion_change_recommendation/A": return 509 - case "motion_change_recommendation/meeting_id": + case "motion_change_recommendation/creation_time": return 510 - case "motion_change_recommendation/motion_id": + case "motion_change_recommendation/id": return 511 - case "motion_change_recommendation/other_description": + case "motion_change_recommendation/internal": return 512 - case "motion_change_recommendation/rejected": + case "motion_change_recommendation/line_from": return 513 - case "motion_change_recommendation/text": + case "motion_change_recommendation/line_to": return 514 - case "motion_change_recommendation/type": + case "motion_change_recommendation/meeting_id": return 515 - case "motion_comment/A": + case "motion_change_recommendation/motion_id": return 516 - case "motion_comment/comment": + case "motion_change_recommendation/other_description": return 517 - case "motion_comment/id": + case "motion_change_recommendation/rejected": return 518 - case "motion_comment/meeting_id": + case "motion_change_recommendation/text": return 519 - case "motion_comment/motion_id": + case "motion_change_recommendation/type": return 520 - case "motion_comment/section_id": + case "motion_comment/A": return 521 - case "motion_comment_section/A": + case "motion_comment/comment": return 522 - case "motion_comment_section/comment_ids": + case "motion_comment/id": return 523 - case "motion_comment_section/id": + case "motion_comment/meeting_id": return 524 - case "motion_comment_section/meeting_id": + case "motion_comment/motion_id": return 525 - case "motion_comment_section/name": + case "motion_comment/section_id": return 526 - case "motion_comment_section/read_group_ids": + case "motion_comment_section/A": return 527 - case "motion_comment_section/sequential_number": + case "motion_comment_section/comment_ids": return 528 - case "motion_comment_section/submitter_can_write": + case "motion_comment_section/id": return 529 - case "motion_comment_section/weight": + case "motion_comment_section/meeting_id": return 530 - case "motion_comment_section/write_group_ids": + case "motion_comment_section/name": return 531 - case "motion_editor/A": + case "motion_comment_section/read_group_ids": return 532 - case "motion_editor/id": + case "motion_comment_section/sequential_number": return 533 - case "motion_editor/meeting_id": + case "motion_comment_section/submitter_can_write": return 534 - case "motion_editor/meeting_user_id": + case "motion_comment_section/weight": return 535 - case "motion_editor/motion_id": + case "motion_comment_section/write_group_ids": return 536 - case "motion_editor/weight": + case "motion_editor/A": return 537 - case "motion_state/A": + case "motion_editor/id": return 538 - case "motion_state/allow_create_poll": + case "motion_editor/meeting_id": return 539 - case "motion_state/allow_motion_forwarding": + case "motion_editor/meeting_user_id": return 540 - case "motion_state/allow_submitter_edit": + case "motion_editor/motion_id": return 541 - case "motion_state/allow_support": + case "motion_editor/weight": return 542 - case "motion_state/css_class": + case "motion_state/A": return 543 - case "motion_state/first_state_of_workflow_id": + case "motion_state/allow_create_poll": return 544 - case "motion_state/id": + case "motion_state/allow_motion_forwarding": return 545 - case "motion_state/is_internal": + case "motion_state/allow_submitter_edit": return 546 - case "motion_state/meeting_id": + case "motion_state/allow_support": return 547 - case "motion_state/merge_amendment_into_final": + case "motion_state/css_class": return 548 - case "motion_state/motion_ids": + case "motion_state/first_state_of_workflow_id": return 549 - case "motion_state/motion_recommendation_ids": + case "motion_state/id": return 550 - case "motion_state/name": + case "motion_state/is_internal": return 551 - case "motion_state/next_state_ids": + case "motion_state/meeting_id": return 552 - case "motion_state/previous_state_ids": + case "motion_state/merge_amendment_into_final": return 553 - case "motion_state/recommendation_label": + case "motion_state/motion_ids": return 554 - case "motion_state/restrictions": + case "motion_state/motion_recommendation_ids": return 555 - case "motion_state/set_number": + case "motion_state/name": return 556 - case "motion_state/set_workflow_timestamp": + case "motion_state/next_state_ids": return 557 - case "motion_state/show_recommendation_extension_field": + case "motion_state/previous_state_ids": return 558 - case "motion_state/show_state_extension_field": + case "motion_state/recommendation_label": return 559 - case "motion_state/submitter_withdraw_back_ids": + case "motion_state/restrictions": return 560 - case "motion_state/submitter_withdraw_state_id": + case "motion_state/set_number": return 561 - case "motion_state/weight": + case "motion_state/set_workflow_timestamp": return 562 - case "motion_state/workflow_id": + case "motion_state/show_recommendation_extension_field": return 563 - case "motion_statute_paragraph/A": + case "motion_state/show_state_extension_field": return 564 - case "motion_statute_paragraph/id": + case "motion_state/submitter_withdraw_back_ids": return 565 - case "motion_statute_paragraph/meeting_id": + case "motion_state/submitter_withdraw_state_id": return 566 - case "motion_statute_paragraph/motion_ids": + case "motion_state/weight": return 567 - case "motion_statute_paragraph/sequential_number": + case "motion_state/workflow_id": return 568 - case "motion_statute_paragraph/text": + case "motion_statute_paragraph/A": return 569 - case "motion_statute_paragraph/title": + case "motion_statute_paragraph/id": return 570 - case "motion_statute_paragraph/weight": + case "motion_statute_paragraph/meeting_id": return 571 - case "motion_submitter/A": + case "motion_statute_paragraph/motion_ids": return 572 - case "motion_submitter/id": + case "motion_statute_paragraph/sequential_number": return 573 - case "motion_submitter/meeting_id": + case "motion_statute_paragraph/text": return 574 - case "motion_submitter/meeting_user_id": + case "motion_statute_paragraph/title": return 575 - case "motion_submitter/motion_id": + case "motion_statute_paragraph/weight": return 576 - case "motion_submitter/weight": + case "motion_submitter/A": return 577 - case "motion_workflow/A": + case "motion_submitter/id": return 578 - case "motion_workflow/default_amendment_workflow_meeting_id": + case "motion_submitter/meeting_id": return 579 - case "motion_workflow/default_statute_amendment_workflow_meeting_id": + case "motion_submitter/meeting_user_id": return 580 - case "motion_workflow/default_workflow_meeting_id": + case "motion_submitter/motion_id": return 581 - case "motion_workflow/first_state_id": + case "motion_submitter/weight": return 582 - case "motion_workflow/id": + case "motion_workflow/A": return 583 - case "motion_workflow/meeting_id": + case "motion_workflow/default_amendment_workflow_meeting_id": return 584 - case "motion_workflow/name": + case "motion_workflow/default_statute_amendment_workflow_meeting_id": return 585 - case "motion_workflow/sequential_number": + case "motion_workflow/default_workflow_meeting_id": return 586 - case "motion_workflow/state_ids": + case "motion_workflow/first_state_id": return 587 - case "motion_working_group_speaker/A": + case "motion_workflow/id": return 588 - case "motion_working_group_speaker/id": + case "motion_workflow/meeting_id": return 589 - case "motion_working_group_speaker/meeting_id": + case "motion_workflow/name": return 590 - case "motion_working_group_speaker/meeting_user_id": + case "motion_workflow/sequential_number": return 591 - case "motion_working_group_speaker/motion_id": + case "motion_workflow/state_ids": return 592 - case "motion_working_group_speaker/weight": + case "motion_working_group_speaker/A": return 593 - case "option/A": + case "motion_working_group_speaker/id": return 594 - case "option/B": + case "motion_working_group_speaker/meeting_id": return 595 - case "option/abstain": + case "motion_working_group_speaker/meeting_user_id": return 596 - case "option/content_object_id": + case "motion_working_group_speaker/motion_id": return 597 - case "option/id": + case "motion_working_group_speaker/weight": return 598 - case "option/meeting_id": + case "option/A": return 599 - case "option/no": + case "option/B": return 600 - case "option/poll_id": + case "option/abstain": return 601 - case "option/text": + case "option/content_object_id": return 602 - case "option/used_as_global_option_in_poll_id": + case "option/id": return 603 - case "option/vote_ids": + case "option/meeting_id": return 604 - case "option/weight": + case "option/no": return 605 - case "option/yes": + case "option/poll_id": return 606 - case "organization/A": + case "option/text": return 607 - case "organization/B": + case "option/used_as_global_option_in_poll_id": return 608 - case "organization/C": + case "option/vote_ids": return 609 - case "organization/E": + case "option/weight": return 610 - case "organization/active_meeting_ids": + case "option/yes": return 611 - case "organization/archived_meeting_ids": + case "organization/A": return 612 - case "organization/committee_ids": + case "organization/B": return 613 - case "organization/default_language": + case "organization/C": return 614 - case "organization/description": + case "organization/E": return 615 - case "organization/enable_chat": + case "organization/active_meeting_ids": return 616 - case "organization/enable_electronic_voting": + case "organization/archived_meeting_ids": return 617 - case "organization/genders": + case "organization/committee_ids": return 618 - case "organization/id": + case "organization/default_language": return 619 - case "organization/legal_notice": + case "organization/description": return 620 - case "organization/limit_of_meetings": + case "organization/enable_chat": return 621 - case "organization/limit_of_users": + case "organization/enable_electronic_voting": return 622 - case "organization/login_text": + case "organization/gender_ids": return 623 - case "organization/mediafile_ids": + case "organization/id": return 624 - case "organization/name": + case "organization/legal_notice": return 625 - case "organization/organization_tag_ids": + case "organization/limit_of_meetings": return 626 - case "organization/privacy_policy": + case "organization/limit_of_users": return 627 - case "organization/published_mediafile_ids": + case "organization/login_text": return 628 - case "organization/require_duplicate_from": + case "organization/mediafile_ids": return 629 - case "organization/reset_password_verbose_errors": + case "organization/name": return 630 - case "organization/saml_attr_mapping": + case "organization/organization_tag_ids": return 631 - case "organization/saml_enabled": + case "organization/privacy_policy": return 632 - case "organization/saml_login_button_text": + case "organization/published_mediafile_ids": return 633 - case "organization/saml_metadata_idp": + case "organization/require_duplicate_from": return 634 - case "organization/saml_metadata_sp": + case "organization/reset_password_verbose_errors": return 635 - case "organization/saml_private_key": + case "organization/saml_attr_mapping": return 636 - case "organization/template_meeting_ids": + case "organization/saml_enabled": return 637 - case "organization/theme_id": + case "organization/saml_login_button_text": return 638 - case "organization/theme_ids": + case "organization/saml_metadata_idp": return 639 - case "organization/url": + case "organization/saml_metadata_sp": return 640 - case "organization/user_ids": + case "organization/saml_private_key": return 641 - case "organization/users_email_body": + case "organization/template_meeting_ids": return 642 - case "organization/users_email_replyto": + case "organization/theme_id": return 643 - case "organization/users_email_sender": + case "organization/theme_ids": return 644 - case "organization/users_email_subject": + case "organization/url": return 645 - case "organization/vote_decrypt_public_main_key": + case "organization/user_ids": return 646 - case "organization_tag/A": + case "organization/users_email_body": return 647 - case "organization_tag/color": + case "organization/users_email_replyto": return 648 - case "organization_tag/id": + case "organization/users_email_sender": return 649 - case "organization_tag/name": + case "organization/users_email_subject": return 650 - case "organization_tag/organization_id": + case "organization/vote_decrypt_public_main_key": return 651 - case "organization_tag/tagged_ids": + case "organization_tag/A": return 652 - case "personal_note/A": + case "organization_tag/color": return 653 - case "personal_note/content_object_id": + case "organization_tag/id": return 654 - case "personal_note/id": + case "organization_tag/name": return 655 - case "personal_note/meeting_id": + case "organization_tag/organization_id": return 656 - case "personal_note/meeting_user_id": + case "organization_tag/tagged_ids": return 657 - case "personal_note/note": + case "personal_note/A": return 658 - case "personal_note/star": + case "personal_note/content_object_id": return 659 - case "point_of_order_category/A": + case "personal_note/id": return 660 - case "point_of_order_category/id": + case "personal_note/meeting_id": return 661 - case "point_of_order_category/meeting_id": + case "personal_note/meeting_user_id": return 662 - case "point_of_order_category/rank": + case "personal_note/note": return 663 - case "point_of_order_category/speaker_ids": + case "personal_note/star": return 664 - case "point_of_order_category/text": + case "point_of_order_category/A": return 665 - case "poll/A": + case "point_of_order_category/id": return 666 - case "poll/B": + case "point_of_order_category/meeting_id": return 667 - case "poll/C": + case "point_of_order_category/rank": return 668 - case "poll/D": + case "point_of_order_category/speaker_ids": return 669 - case "poll/backend": + case "point_of_order_category/text": return 670 - case "poll/content_object_id": + case "poll/A": return 671 - case "poll/crypt_key": + case "poll/B": return 672 - case "poll/crypt_signature": + case "poll/C": return 673 - case "poll/description": + case "poll/D": return 674 + case "poll/backend": + return 675 + case "poll/content_object_id": + return 676 + case "poll/crypt_key": + return 677 + case "poll/crypt_signature": + return 678 + case "poll/description": + return 679 case "poll/entitled_group_ids": - return 675 + return 680 case "poll/entitled_users_at_stop": - return 676 + return 681 case "poll/global_abstain": - return 677 + return 682 case "poll/global_no": - return 678 + return 683 case "poll/global_option_id": - return 679 + return 684 case "poll/global_yes": - return 680 + return 685 case "poll/id": - return 681 + return 686 case "poll/is_pseudoanonymized": - return 682 + return 687 case "poll/max_votes_amount": - return 683 + return 688 case "poll/max_votes_per_option": - return 684 + return 689 case "poll/meeting_id": - return 685 + return 690 case "poll/min_votes_amount": - return 686 + return 691 case "poll/onehundred_percent_base": - return 687 + return 692 case "poll/option_ids": - return 688 + return 693 case "poll/pollmethod": - return 689 + return 694 case "poll/projection_ids": - return 690 + return 695 case "poll/sequential_number": - return 691 + return 696 case "poll/state": - return 692 + return 697 case "poll/title": - return 693 + return 698 case "poll/type": - return 694 + return 699 case "poll/vote_count": - return 695 + return 700 case "poll/voted_ids": - return 696 + return 701 case "poll/votes_raw": - return 697 + return 702 case "poll/votes_signature": - return 698 + return 703 case "poll/votescast": - return 699 + return 704 case "poll/votesinvalid": - return 700 + return 705 case "poll/votesvalid": - return 701 + return 706 case "poll_candidate/A": - return 702 + return 707 case "poll_candidate/id": - return 703 + return 708 case "poll_candidate/meeting_id": - return 704 + return 709 case "poll_candidate/poll_candidate_list_id": - return 705 + return 710 case "poll_candidate/user_id": - return 706 + return 711 case "poll_candidate/weight": - return 707 + return 712 case "poll_candidate_list/A": - return 708 + return 713 case "poll_candidate_list/id": - return 709 + return 714 case "poll_candidate_list/meeting_id": - return 710 + return 715 case "poll_candidate_list/option_id": - return 711 + return 716 case "poll_candidate_list/poll_candidate_ids": - return 712 + return 717 case "projection/A": - return 713 + return 718 case "projection/content": - return 714 + return 719 case "projection/content_object_id": - return 715 + return 720 case "projection/current_projector_id": - return 716 + return 721 case "projection/history_projector_id": - return 717 + return 722 case "projection/id": - return 718 + return 723 case "projection/meeting_id": - return 719 + return 724 case "projection/options": - return 720 + return 725 case "projection/preview_projector_id": - return 721 + return 726 case "projection/stable": - return 722 + return 727 case "projection/type": - return 723 + return 728 case "projection/weight": - return 724 + return 729 case "projector/A": - return 725 + return 730 case "projector/aspect_ratio_denominator": - return 726 + return 731 case "projector/aspect_ratio_numerator": - return 727 + return 732 case "projector/background_color": - return 728 + return 733 case "projector/chyron_background_color": - return 729 + return 734 case "projector/chyron_background_color_2": - return 730 + return 735 case "projector/chyron_font_color": - return 731 + return 736 case "projector/chyron_font_color_2": - return 732 + return 737 case "projector/color": - return 733 + return 738 case "projector/current_projection_ids": - return 734 + return 739 case "projector/header_background_color": - return 735 + return 740 case "projector/header_font_color": - return 736 + return 741 case "projector/header_h1_color": - return 737 + return 742 case "projector/history_projection_ids": - return 738 + return 743 case "projector/id": - return 739 + return 744 case "projector/is_internal": - return 740 + return 745 case "projector/meeting_id": - return 741 + return 746 case "projector/name": - return 742 + return 747 case "projector/preview_projection_ids": - return 743 + return 748 case "projector/scale": - return 744 + return 749 case "projector/scroll": - return 745 + return 750 case "projector/sequential_number": - return 746 + return 751 case "projector/show_clock": - return 747 + return 752 case "projector/show_header_footer": - return 748 + return 753 case "projector/show_logo": - return 749 + return 754 case "projector/show_title": - return 750 + return 755 case "projector/used_as_default_projector_for_agenda_item_list_in_meeting_id": - return 751 + return 756 case "projector/used_as_default_projector_for_amendment_in_meeting_id": - return 752 + return 757 case "projector/used_as_default_projector_for_assignment_in_meeting_id": - return 753 + return 758 case "projector/used_as_default_projector_for_assignment_poll_in_meeting_id": - return 754 + return 759 case "projector/used_as_default_projector_for_countdown_in_meeting_id": - return 755 + return 760 case "projector/used_as_default_projector_for_current_list_of_speakers_in_meeting_id": - return 756 + return 761 case "projector/used_as_default_projector_for_list_of_speakers_in_meeting_id": - return 757 + return 762 case "projector/used_as_default_projector_for_mediafile_in_meeting_id": - return 758 + return 763 case "projector/used_as_default_projector_for_message_in_meeting_id": - return 759 + return 764 case "projector/used_as_default_projector_for_motion_block_in_meeting_id": - return 760 + return 765 case "projector/used_as_default_projector_for_motion_in_meeting_id": - return 761 + return 766 case "projector/used_as_default_projector_for_motion_poll_in_meeting_id": - return 762 + return 767 case "projector/used_as_default_projector_for_poll_in_meeting_id": - return 763 + return 768 case "projector/used_as_default_projector_for_topic_in_meeting_id": - return 764 + return 769 case "projector/used_as_reference_projector_meeting_id": - return 765 + return 770 case "projector/width": - return 766 + return 771 case "projector_countdown/A": - return 767 + return 772 case "projector_countdown/countdown_time": - return 768 + return 773 case "projector_countdown/default_time": - return 769 + return 774 case "projector_countdown/description": - return 770 + return 775 case "projector_countdown/id": - return 771 + return 776 case "projector_countdown/meeting_id": - return 772 + return 777 case "projector_countdown/projection_ids": - return 773 + return 778 case "projector_countdown/running": - return 774 + return 779 case "projector_countdown/title": - return 775 + return 780 case "projector_countdown/used_as_list_of_speakers_countdown_meeting_id": - return 776 + return 781 case "projector_countdown/used_as_poll_countdown_meeting_id": - return 777 + return 782 case "projector_message/A": - return 778 + return 783 case "projector_message/id": - return 779 + return 784 case "projector_message/meeting_id": - return 780 + return 785 case "projector_message/message": - return 781 + return 786 case "projector_message/projection_ids": - return 782 + return 787 case "speaker/A": - return 783 + return 788 case "speaker/begin_time": - return 784 + return 789 case "speaker/end_time": - return 785 + return 790 case "speaker/id": - return 786 + return 791 case "speaker/list_of_speakers_id": - return 787 + return 792 case "speaker/meeting_id": - return 788 + return 793 case "speaker/meeting_user_id": - return 789 + return 794 case "speaker/note": - return 790 + return 795 case "speaker/pause_time": - return 791 + return 796 case "speaker/point_of_order": - return 792 + return 797 case "speaker/point_of_order_category_id": - return 793 + return 798 case "speaker/speech_state": - return 794 + return 799 case "speaker/structure_level_list_of_speakers_id": - return 795 + return 800 case "speaker/total_pause": - return 796 + return 801 case "speaker/unpause_time": - return 797 + return 802 case "speaker/weight": - return 798 + return 803 case "structure_level/A": - return 799 + return 804 case "structure_level/color": - return 800 + return 805 case "structure_level/default_time": - return 801 + return 806 case "structure_level/id": - return 802 + return 807 case "structure_level/meeting_id": - return 803 + return 808 case "structure_level/meeting_user_ids": - return 804 + return 809 case "structure_level/name": - return 805 + return 810 case "structure_level/structure_level_list_of_speakers_ids": - return 806 + return 811 case "structure_level_list_of_speakers/A": - return 807 + return 812 case "structure_level_list_of_speakers/additional_time": - return 808 + return 813 case "structure_level_list_of_speakers/current_start_time": - return 809 + return 814 case "structure_level_list_of_speakers/id": - return 810 + return 815 case "structure_level_list_of_speakers/initial_time": - return 811 + return 816 case "structure_level_list_of_speakers/list_of_speakers_id": - return 812 + return 817 case "structure_level_list_of_speakers/meeting_id": - return 813 + return 818 case "structure_level_list_of_speakers/remaining_time": - return 814 + return 819 case "structure_level_list_of_speakers/speaker_ids": - return 815 + return 820 case "structure_level_list_of_speakers/structure_level_id": - return 816 + return 821 case "tag/A": - return 817 + return 822 case "tag/id": - return 818 + return 823 case "tag/meeting_id": - return 819 + return 824 case "tag/name": - return 820 + return 825 case "tag/tagged_ids": - return 821 + return 826 case "theme/A": - return 822 + return 827 case "theme/abstain": - return 823 + return 828 case "theme/accent_100": - return 824 + return 829 case "theme/accent_200": - return 825 + return 830 case "theme/accent_300": - return 826 + return 831 case "theme/accent_400": - return 827 + return 832 case "theme/accent_50": - return 828 + return 833 case "theme/accent_500": - return 829 + return 834 case "theme/accent_600": - return 830 + return 835 case "theme/accent_700": - return 831 + return 836 case "theme/accent_800": - return 832 + return 837 case "theme/accent_900": - return 833 + return 838 case "theme/accent_a100": - return 834 + return 839 case "theme/accent_a200": - return 835 + return 840 case "theme/accent_a400": - return 836 + return 841 case "theme/accent_a700": - return 837 + return 842 case "theme/headbar": - return 838 + return 843 case "theme/id": - return 839 + return 844 case "theme/name": - return 840 + return 845 case "theme/no": - return 841 + return 846 case "theme/organization_id": - return 842 + return 847 case "theme/primary_100": - return 843 + return 848 case "theme/primary_200": - return 844 + return 849 case "theme/primary_300": - return 845 + return 850 case "theme/primary_400": - return 846 + return 851 case "theme/primary_50": - return 847 + return 852 case "theme/primary_500": - return 848 + return 853 case "theme/primary_600": - return 849 + return 854 case "theme/primary_700": - return 850 + return 855 case "theme/primary_800": - return 851 + return 856 case "theme/primary_900": - return 852 + return 857 case "theme/primary_a100": - return 853 + return 858 case "theme/primary_a200": - return 854 + return 859 case "theme/primary_a400": - return 855 + return 860 case "theme/primary_a700": - return 856 + return 861 case "theme/theme_for_organization_id": - return 857 + return 862 case "theme/warn_100": - return 858 + return 863 case "theme/warn_200": - return 859 + return 864 case "theme/warn_300": - return 860 + return 865 case "theme/warn_400": - return 861 + return 866 case "theme/warn_50": - return 862 + return 867 case "theme/warn_500": - return 863 + return 868 case "theme/warn_600": - return 864 + return 869 case "theme/warn_700": - return 865 + return 870 case "theme/warn_800": - return 866 + return 871 case "theme/warn_900": - return 867 + return 872 case "theme/warn_a100": - return 868 + return 873 case "theme/warn_a200": - return 869 + return 874 case "theme/warn_a400": - return 870 + return 875 case "theme/warn_a700": - return 871 + return 876 case "theme/yes": - return 872 + return 877 case "topic/A": - return 873 + return 878 case "topic/agenda_item_id": - return 874 + return 879 case "topic/attachment_meeting_mediafile_ids": - return 875 + return 880 case "topic/id": - return 876 + return 881 case "topic/list_of_speakers_id": - return 877 + return 882 case "topic/meeting_id": - return 878 + return 883 case "topic/poll_ids": - return 879 + return 884 case "topic/projection_ids": - return 880 + return 885 case "topic/sequential_number": - return 881 + return 886 case "topic/text": - return 882 + return 887 case "topic/title": - return 883 + return 888 case "user/A": - return 884 + return 889 case "user/B": - return 885 + return 890 case "user/D": - return 886 + return 891 case "user/E": - return 887 + return 892 case "user/F": - return 888 + return 893 case "user/G": - return 889 + return 894 case "user/H": - return 890 + return 895 case "user/can_change_own_password": - return 891 + return 896 case "user/committee_ids": - return 892 + return 897 case "user/committee_management_ids": - return 893 + return 898 case "user/default_password": - return 894 + return 899 case "user/default_vote_weight": - return 895 + return 900 case "user/delegated_vote_ids": - return 896 + return 901 case "user/email": - return 897 + return 902 case "user/first_name": - return 898 + return 903 case "user/forwarding_committee_ids": - return 899 - case "user/gender": - return 900 + return 904 + case "user/gender_id": + return 905 case "user/id": - return 901 + return 906 case "user/is_active": - return 902 + return 907 case "user/is_demo_user": - return 903 + return 908 case "user/is_physical_person": - return 904 + return 909 case "user/is_present_in_meeting_ids": - return 905 + return 910 case "user/last_email_sent": - return 906 + return 911 case "user/last_login": - return 907 + return 912 case "user/last_name": - return 908 + return 913 case "user/meeting_ids": - return 909 + return 914 case "user/meeting_user_ids": - return 910 + return 915 case "user/member_number": - return 911 + return 916 case "user/option_ids": - return 912 + return 917 case "user/organization_id": - return 913 + return 918 case "user/organization_management_level": - return 914 + return 919 case "user/password": - return 915 + return 920 case "user/poll_candidate_ids": - return 916 + return 921 case "user/poll_voted_ids": - return 917 + return 922 case "user/pronoun": - return 918 + return 923 case "user/saml_id": - return 919 + return 924 case "user/title": - return 920 + return 925 case "user/username": - return 921 + return 926 case "user/vote_ids": - return 922 + return 927 case "vote/A": - return 923 + return 928 case "vote/B": - return 924 + return 929 case "vote/delegated_user_id": - return 925 + return 930 case "vote/id": - return 926 + return 931 case "vote/meeting_id": - return 927 + return 932 case "vote/option_id": - return 928 + return 933 case "vote/user_id": - return 929 + return 934 case "vote/user_token": - return 930 + return 935 case "vote/value": - return 931 + return 936 case "vote/weight": - return 932 + return 937 default: return -1 }