@@ -2720,10 +2720,18 @@ of :class:`enum.Enum`.
27202720
27212721 The maximum length of a select placeholder (150).
27222722
2723+ .. attribute :: select_min_value_min
2724+
2725+ The minimum value for select's minimum value constraint (0).
2726+
27232727 .. attribute :: select_min_value_max
27242728
27252729 The maximum value for select's minimum value constraint (25).
27262730
2731+ .. attribute :: select_max_value_min
2732+
2733+ The minimum value for select's maximum value constraint (1).
2734+
27272735 .. attribute :: select_max_value_max
27282736
27292737 The maximum value for select's maximum value constraint (25).
@@ -2732,6 +2740,10 @@ of :class:`enum.Enum`.
27322740
27332741 The maximum number of options in a select menu (25).
27342742
2743+ .. attribute :: select_default_values_max
2744+
2745+ The maximum number of default values in a select menu (25).
2746+
27352747 .. attribute :: select_option_label_max
27362748
27372749 The maximum length of a select option label (100).
@@ -2768,6 +2780,10 @@ of :class:`enum.Enum`.
27682780
27692781 The maximum length of a TextInput placeholder (100).
27702782
2783+ .. attribute :: text_input_min_length_min
2784+
2785+ The minimum value for TextInput's minimum length (0).
2786+
27712787 .. attribute :: text_input_min_length_max
27722788
27732789 The maximum value for TextInput's minimum length (4000).
@@ -2796,6 +2812,50 @@ of :class:`enum.Enum`.
27962812
27972813 The maximum length of a custom ID (100).
27982814
2815+ .. attribute :: radio_options_max
2816+
2817+ The maximum number of options in a RadioGroup (10).
2818+
2819+ .. attribute :: checkbox_options_max
2820+
2821+ The maximum number of options in a CheckboxGroup (10).
2822+
2823+ .. attribute :: checkbox_min_values_min
2824+
2825+ The minimum value for checkbox's minimum value constraint (0).
2826+
2827+ .. attribute :: checkbox_min_values_max
2828+
2829+ The maximum value for checkbox's minimum value constraint (10).
2830+
2831+ .. attribute :: checkbox_max_values_min
2832+
2833+ The minimum value for checkbox's maximum value constraint (1).
2834+
2835+ .. attribute :: checkbox_max_values_max
2836+
2837+ The maximum value for checkbox's maximum value constraint (10).
2838+
2839+ .. attribute :: file_upload_min_files
2840+
2841+ The minimum number of files that can be uploaded (0).
2842+
2843+ .. attribute :: file_upload_max_files_max
2844+
2845+ The maximum number of files that can be uploaded (10).
2846+
2847+ .. attribute :: file_upload_max_values_min
2848+
2849+ The minimum value for file upload's maximum value constraint (1).
2850+
2851+ .. attribute :: modal_title_max
2852+
2853+ The maximum length of a modal title (45).
2854+
2855+ .. attribute :: modal_rows_max
2856+
2857+ The maximum number of rows in a modal (5).
2858+
27992859.. class :: EmbedLimits
28002860
28012861 Represents the limits for Discord embeds.
0 commit comments