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