Layer 224
MessagesHistoryImportParsedObj
Contains information about a chat export file generated by a foreign chat app, click here for more info. If neither the pm or group flags are set, the specified chat export was generated from a chat of unknown type.
constructor
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. |
Returns
messages.HistoryImportParsedGogram Example
// Creating MessagesHistoryImportParsedObj constructor obj := &tg.MessagesHistoryImportParsedObj{ // Optional fields: // Pm: true, // Group: true, // Title: "Hello, World!", }