telegram-bot-api-7.0: Easy to use library for building Telegram bots. Exports Telegram Bot API.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Telegram.Bot.API.Types.ChatShared

Contents

Synopsis

ChatShared

data ChatShared Source #

This object contains information about the chat whose identifier was shared with the bot using a KeyboardButtonRequestChat button.

Constructors

ChatShared 

Fields

  • chatSharedRequestId :: RequestId

    Identifier of the request.

  • chatSharedChatId :: ChatId

    Identifier of the shared chat. 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 may not have access to the chat and could be unable to use this identifier, unless the chat is already known to the bot by some other means.

Instances

Instances details
FromJSON ChatShared Source # 
Instance details

Defined in Telegram.Bot.API.Types.ChatShared

ToJSON ChatShared Source # 
Instance details

Defined in Telegram.Bot.API.Types.ChatShared

Generic ChatShared Source # 
Instance details

Defined in Telegram.Bot.API.Types.ChatShared

Associated Types

type Rep ChatShared :: Type -> Type #

Show ChatShared Source # 
Instance details

Defined in Telegram.Bot.API.Types.ChatShared

type Rep ChatShared Source # 
Instance details

Defined in Telegram.Bot.API.Types.ChatShared

type Rep ChatShared = D1 ('MetaData "ChatShared" "Telegram.Bot.API.Types.ChatShared" "telegram-bot-api-7.0-2XShkJeCLX71W7OKNKemWZ" 'False) (C1 ('MetaCons "ChatShared" 'PrefixI 'True) (S1 ('MetaSel ('Just "chatSharedRequestId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 RequestId) :*: S1 ('MetaSel ('Just "chatSharedChatId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 ChatId)))