@@ -365,7 +365,7 @@ class BaseSelectMenu(InteractiveComponent):
365
365
min_values Optional[int]: The minimum number of items that must be chosen. (default 1, min 0, max 25)
366
366
max_values Optional[int]: The maximum number of items that can be chosen. (default 1, max 25)
367
367
disabled bool: Disable the select and make it not intractable, default false.
368
- type Union[ComponentType, int]: The action role type number defined by discord. This cannot be modified.
368
+ type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
369
369
required bool: Whether this select menu is required to be filled out or not in modals.
370
370
371
371
"""
@@ -590,7 +590,7 @@ class StringSelectMenu(BaseSelectMenu):
590
590
min_values Optional[int]: The minimum number of items that must be chosen. (default 1, min 0, max 25)
591
591
max_values Optional[int]: The maximum number of items that can be chosen. (default 1, max 25)
592
592
disabled bool: Disable the select and make it not intractable, default false.
593
- type Union[ComponentType, int]: The action role type number defined by discord. This cannot be modified.
593
+ type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
594
594
required bool: Whether this select menu is required to be filled out or not in modals.
595
595
596
596
"""
@@ -656,7 +656,7 @@ class UserSelectMenu(DefaultableSelectMenu):
656
656
custom_id str: A developer-defined identifier for the select, max 100 characters.
657
657
default_values list[BaseUser, Member, SelectDefaultValues]: A list of default values to pre-select in the select.
658
658
disabled bool: Disable the select and make it not intractable, default false.
659
- type Union[ComponentType, int]: The action role type number defined by discord. This cannot be modified.
659
+ type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
660
660
required bool: Whether this select menu is required to be filled out or not in modals.
661
661
662
662
"""
@@ -705,7 +705,7 @@ class RoleSelectMenu(DefaultableSelectMenu):
705
705
custom_id str: A developer-defined identifier for the select, max 100 characters.
706
706
default_values list[Role, SelectDefaultValues]: A list of default values to pre-select in the select.
707
707
disabled bool: Disable the select and make it not intractable, default false.
708
- type Union[ComponentType, int]: The action role type number defined by discord. This cannot be modified.
708
+ type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
709
709
required bool: Whether this select menu is required to be filled out or not in modals.
710
710
711
711
"""
@@ -754,6 +754,7 @@ class MentionableSelectMenu(DefaultableSelectMenu):
754
754
default_values list[BaseUser, Role, BaseChannel, Member, SelectDefaultValues]: A list of default values to pre-select in the select.
755
755
disabled bool: Disable the select and make it not intractable, default false.
756
756
type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
757
+ required bool: Whether this select menu is required to be filled out or not in modals.
757
758
758
759
"""
759
760
@@ -804,6 +805,7 @@ class ChannelSelectMenu(DefaultableSelectMenu):
804
805
default_values list[BaseChannel, SelectDefaultValues]: A list of default values to pre-select in the select.
805
806
disabled bool: Disable the select and make it not intractable, default false.
806
807
type Union[ComponentType, int]: The type of component, as defined by discord. This cannot be modified.
808
+ required bool: Whether this select menu is required to be filled out or not in modals.
807
809
808
810
"""
809
811
0 commit comments