diff --git a/maxapi/types/attachments/buttons/request_contact.py b/maxapi/types/attachments/buttons/request_contact.py index 2c8af5d..d1565fc 100644 --- a/maxapi/types/attachments/buttons/request_contact.py +++ b/maxapi/types/attachments/buttons/request_contact.py @@ -1,8 +1,18 @@ +from typing import Optional + +from ....enums.button_type import ButtonType + from .button import Button -class RequestContact(Button): +class RequestContactButton(Button): + """ - Кнопка с контактом. + Кнопка с контактом + + Args: + text: Текст кнопки """ - ... \ No newline at end of file + + type: ButtonType = ButtonType.REQUEST_CONTACT + text: str \ No newline at end of file