summary refs log tree commit diff
path: root/src/util/schemas/GuildCreateSchema.ts
blob: f3de7007a9bd797db99a41b857f0defaa561e10f (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;
}