aboutsummaryrefslogtreecommitdiff
path: root/lib/models/presence_t.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/models/presence_t.ml')
-rw-r--r--lib/models/presence_t.ml19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/models/presence_t.ml b/lib/models/presence_t.ml
new file mode 100644
index 0000000..940d986
--- /dev/null
+++ b/lib/models/presence_t.ml
@@ -0,0 +1,19 @@
+(* Auto-generated from "presence.atd" *)
+ [@@@ocaml.warning "-27-32-35-39"]
+
+type user = User_t.t
+
+type snowflake = Snowflake_t.t
+
+type partial_user = User_t.partial_user
+
+type activity = Activity_t.t
+
+type t = {
+ user: partial_user;
+ roles: snowflake list;
+ game: activity option;
+ guild_id: snowflake;
+ status: string;
+ activities: activity list
+}