summary refs log tree commit diff
path: root/src/util/schemas/GuildCreateSchema.ts
blob: e48551192c11b119ecd4a77095eb0f7f5a1343fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { ChannelModifySchema } from ".";

export interface GuildCreateSchema {
	/**
	 * @maxLength 100
	 */
	name: string;
	region?: string;
	icon?: string | null;
	channels?: ChannelModifySchema[];
	guild_template_code?: string;
	system_channel_id?: string;
	rules_channel_id?: string;
}