Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 734 Bytes

MessageOriginChat.md

File metadata and controls

24 lines (18 loc) · 734 Bytes

TelegramBotOpenapi::MessageOriginChat

Properties

Name Type Description Notes
type String Type of the message origin, always "chat"
date Integer Date the message was sent originally in Unix time
sender_chat Chat Chat that sent the message originally
author_signature String Optional. For messages originally sent by an anonymous chat administrator, original message author signature [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::MessageOriginChat.new(
  type: null,
  date: null,
  sender_chat: null,
  author_signature: null
)