Layer 227
constructor
messages.historyImportParsed#5e0fb7b9 flags:# pm:flags.0?true group:flags.1?true title:flags.2?string = messages.HistoryImportParsed;

Parameters

Name Type Description
Pm flags .0? true The chat export file was generated from a private chat.
Group flags .1? true The chat export file was generated from a group chat.
Title flags .2? string Title of the chat.

Gogram Example

// Creating MessagesHistoryImportParsedObj constructor
obj := &tg.MessagesHistoryImportParsedObj{
    Pm: nil,
    Group: nil,
    Title: "Hello, World!",
}