Class: TD::Types::Update::NewChatJoinRequest
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::NewChatJoinRequest
- Defined in:
- lib/tdlib/types/update/new_chat_join_request.rb
Overview
A user sent a join request to a chat; for bots only.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Chat identifier.
-
#invite_link ⇒ TD::Types::ChatInviteLink?
The invite link, which was used to send join request; may be null.
-
#request ⇒ TD::Types::ChatJoinRequest
Join request.
-
#user_chat_id ⇒ Integer
Chat identifier of the private chat with the user.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Chat identifier.
9 10 11 |
# File 'lib/tdlib/types/update/new_chat_join_request.rb', line 9 def chat_id @chat_id end |
#invite_link ⇒ TD::Types::ChatInviteLink?
The invite link, which was used to send join request; may be null.
9 10 11 |
# File 'lib/tdlib/types/update/new_chat_join_request.rb', line 9 def invite_link @invite_link end |
#request ⇒ TD::Types::ChatJoinRequest
Join request.
9 10 11 |
# File 'lib/tdlib/types/update/new_chat_join_request.rb', line 9 def request @request end |
#user_chat_id ⇒ Integer
Chat identifier of the private chat with the user.
9 10 11 |
# File 'lib/tdlib/types/update/new_chat_join_request.rb', line 9 def user_chat_id @user_chat_id end |