blob: f44e4808fa78d803933cff8d96af85491ea97a72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pub const Type = enum {
private,
group,
supergroup,
channel,
};
id: i64,
type: Type,
title: ?[]const u8 = null,
username: ?[]const u8 = null,
first_name: ?[]const u8 = null,
last_name: ?[]const u8 = null,
is_forum: bool = false,
|