diff options
Diffstat (limited to 'src/util/schemas/responses/GuildBansResponse.ts')
-rw-r--r-- | src/util/schemas/responses/GuildBansResponse.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/schemas/responses/GuildBansResponse.ts b/src/util/schemas/responses/GuildBansResponse.ts new file mode 100644 index 00000000..876a4bc4 --- /dev/null +++ b/src/util/schemas/responses/GuildBansResponse.ts @@ -0,0 +1,10 @@ +export interface GuildBansResponse { + reason: string; + user: { + username: string; + discriminator: string; + id: string; + avatar: string | null; + public_flags: number; + }; +} |