Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- data UserType
- = UserTypeRegular
- | UserTypeDeleted
- | UserTypeBot {
- can_be_edited :: Maybe Bool
- can_join_groups :: Maybe Bool
- can_read_all_group_messages :: Maybe Bool
- has_main_web_app :: Maybe Bool
- is_inline :: Maybe Bool
- inline_query_placeholder :: Maybe Text
- need_location :: Maybe Bool
- can_connect_to_business :: Maybe Bool
- can_be_added_to_attachment_menu :: Maybe Bool
- active_user_count :: Maybe Int
- | UserTypeUnknown
Documentation
Represents the type of user. The following types are possible: regular users, deleted users and bots
UserTypeRegular | A regular user |
UserTypeDeleted | A deleted user or deleted bot. No information on the user besides the user identifier is available. It is not possible to perform any active actions on this type of user |
UserTypeBot | A bot (see https://core.telegram.org/bots) |
| |
UserTypeUnknown | No information on the user besides the user identifier is available, yet this user has not been deleted. This object is extremely rare and must be handled like a deleted user. It is not possible to perform any actions on users of this type |