blob: 7cbbe202d590e263556c4d53a97c0f4f95b000d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
const Location = @import("Location.zig");
const User = @import("User.zig");
pub const ChatType = enum {
sender,
private,
group,
supergroup,
channel,
};
id: []const u8,
from: User,
query: []const u8,
offset: []const u8,
chat_type: ?ChatType,
location: ?Location,
|