Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 672 Bytes

File metadata and controls

22 lines (16 loc) · 672 Bytes

TelegramBotOpenapi::BotCommandScopeChatMember

Properties

Name Type Description Notes
type String Scope type, must be chat_member
chat_id Hash<String, SendMessageChatIdParameterValue> Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
user_id Integer Unique identifier of the target user

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::BotCommandScopeChatMember.new(
  type: null,
  chat_id: null,
  user_id: null
)