class Tourmaline::ChatJoinRequest
- Tourmaline::ChatJoinRequest
- Reference
- Object
Overview
Represents a join request sent to a chat.
Included Modules
- JSON::Serializable
Defined in:
tourmaline/types/api.crConstructors
- .new(chat : Tourmaline::Chat, from : Tourmaline::User, user_chat_id : Int32 | Int64, date : Time, bio : String | Nil = nil, invite_link : Tourmaline::ChatInviteLink | Nil = nil)
- .new(pull : JSON::PullParser)
Instance Method Summary
-
#bio : String | Nil
Optional.
-
#bio=(bio : String | Nil)
Optional.
-
#chat : Tourmaline::Chat
Chat to which the request was sent
-
#chat=(chat : Tourmaline::Chat)
Chat to which the request was sent
- #date : Time
- #date=(date : Time)
-
#from : Tourmaline::User
User that sent the join request
-
#from=(from : Tourmaline::User)
User that sent the join request
-
#invite_link : Tourmaline::ChatInviteLink | Nil
Optional.
-
#invite_link=(invite_link : Tourmaline::ChatInviteLink | Nil)
Optional.
-
#user_chat_id : Int32 | Int64
Identifier of a private chat with the user who sent the join request.
-
#user_chat_id=(user_chat_id : Int32 | Int64)
Identifier of a private chat with the user who sent the join request.
Constructor Detail
Instance Method Detail
Optional. Chat invite link that was used by the user to send the join request
Optional. Chat invite link that was used by the user to send the join request
Identifier of a private chat with the user who sent the join request. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. The bot can use this identifier for 5 minutes to send messages until the join request is processed, assuming no other administrator contacted the user.
Identifier of a private chat with the user who sent the join request. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. The bot can use this identifier for 5 minutes to send messages until the join request is processed, assuming no other administrator contacted the user.