summary refs log tree commit diff
path: root/src/util/schemas/responses/UserRelationsResponse.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-03-23 13:51:29 -0400
committerPuyodead1 <puyodead@proton.me>2023-04-13 15:06:21 -0400
commit777e7208dccb3e28f6c2fe85abb5a6d7aaa99ed2 (patch)
treeeaaec58da7cad27f75191172c35540ef5b8c5516 /src/util/schemas/responses/UserRelationsResponse.ts
parentgateway (diff)
downloadserver-777e7208dccb3e28f6c2fe85abb5a6d7aaa99ed2.tar.xz
AAA
Diffstat (limited to 'src/util/schemas/responses/UserRelationsResponse.ts')
-rw-r--r--src/util/schemas/responses/UserRelationsResponse.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/schemas/responses/UserRelationsResponse.ts b/src/util/schemas/responses/UserRelationsResponse.ts
new file mode 100644
index 00000000..1ec15eca
--- /dev/null
+++ b/src/util/schemas/responses/UserRelationsResponse.ts
@@ -0,0 +1,9 @@
+export interface UserRelationsResponse {
+	object: {
+		id?: string;
+		username?: string;
+		avatar?: string;
+		discriminator?: string;
+		public_flags?: number;
+	};
+}