aboutsummaryrefslogtreecommitdiff
path: root/lib/models/gen/channel_t.ml
blob: a5c9ce46048e96fec2c4fb1a045e17a016491d3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* Auto-generated from "channel.atd" *)
              [@@@ocaml.warning "-27-32-35-39"]

type user = User_t.t

type snowflake = Snowflake_t.t

type t = {
  id: snowflake;
  kind: int;
  guild_id: snowflake option;
  position: int option;
  name: string option;
  topic: string option;
  nsfw: bool option;
  bitrate: int option;
  user_limit: int option;
  recipients: user list option;
  icon: string option;
  owner_id: snowflake option;
  application_id: snowflake option;
  parent_id: snowflake option
}