interface GuildCreateOptions {
    afkChannelId?: string | number;
    afkTimeout?: number;
    channels?: readonly PartialChannelData[];
    defaultMessageNotifications?: GuildDefaultMessageNotifications;
    explicitContentFilter?: GuildExplicitContentFilter;
    icon?: null | string | Buffer;
    name: string;
    roles?: readonly PartialRoleData[];
    systemChannelFlags?: SystemChannelFlagsResolvable;
    systemChannelId?: string | number;
    verificationLevel?: GuildVerificationLevel;
}

Properties

afkChannelId?: string | number
afkTimeout?: number
channels?: readonly PartialChannelData[]
defaultMessageNotifications?: GuildDefaultMessageNotifications
explicitContentFilter?: GuildExplicitContentFilter
icon?: null | string | Buffer
name: string
roles?: readonly PartialRoleData[]
systemChannelFlags?: SystemChannelFlagsResolvable
systemChannelId?: string | number
verificationLevel?: GuildVerificationLevel