Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 662 Bytes

ChatMemberOwner.md

File metadata and controls

24 lines (18 loc) · 662 Bytes

TelegramBotOpenapi::ChatMemberOwner

Properties

Name Type Description Notes
status String The member's status in the chat, always "creator"
user User Information about the user
is_anonymous Boolean True, if the user's presence in the chat is hidden
custom_title String Optional. Custom title for this user [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::ChatMemberOwner.new(
  status: null,
  user: null,
  is_anonymous: null,
  custom_title: null
)