telegram-bot-api-7.3.1: 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.

  • chatSharedTitle :: Maybe Text

    Title of the chat, if the title was requested by the bot.

  • chatSharedUsername :: Maybe Text

    Username of the chat, if the username was requested by the bot and available.

  • chatSharedPhoto :: Maybe [PhotoSize]

    Available sizes of the chat photo, if the photo was requested by the bot.

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.3.1-HIEcormdC3TJNwe3u54c0g" 'False) (C1 ('MetaCons "ChatShared" 'PrefixI 'True) ((S1 ('MetaSel ('Just "chatSharedRequestId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 RequestId) :*: S1 ('MetaSel ('Just "chatSharedChatId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 ChatId)) :*: (S1 ('MetaSel ('Just "chatSharedTitle") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "chatSharedUsername") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "chatSharedPhoto") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Maybe [PhotoSize]))))))