blob: 47da2cbb439e11d986a5bf75582cb27a17cb8c8d (
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 = null,
location: ?Location = null,
|