Browse Source
Correct documentation for TextInput.custom_id
pull/7757/head
UltimateSppy765
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ui/text_input.py
|
@ -122,7 +122,7 @@ class TextInput(Item[V]): |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def custom_id(self) -> str: |
|
|
def custom_id(self) -> str: |
|
|
""":class:`str`: The ID of the select menu that gets received during an interaction.""" |
|
|
""":class:`str`: The ID of the text input that gets received during an interaction.""" |
|
|
return self._underlying.custom_id |
|
|
return self._underlying.custom_id |
|
|
|
|
|
|
|
|
@custom_id.setter |
|
|
@custom_id.setter |
|
|