summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildBansResponse.ts
blob: 876a4bc421773bb992b473925564ab3f5f3101a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export interface GuildBansResponse {
	reason: string;
	user: {
		username: string;
		discriminator: string;
		id: string;
		avatar: string | null;
		public_flags: number;
	};
}