Interface RawTextChannel

interface RawTextChannel {
    default_auto_archive_duration: 60 | 1440 | 4320 | 10080;
    guild_id: string;
    id: string;
    last_message_id: null | string;
    last_pin_timestamp: null | string;
    name: string;
    nsfw: boolean;
    parent_id: null | string;
    permission_overwrites: RawOverwrite[];
    position: number;
    rate_limit_per_user: number;
    topic: null | string;
    type: GUILD_TEXT;
}

Hierarchy

  • Omit<RawGuildChannel, "type">
  • Required<Pick<RawChannel, "default_auto_archive_duration" | "last_message_id" | "last_pin_timestamp" | "rate_limit_per_user" | "topic" | "nsfw" | "permission_overwrites" | "position">>
    • RawTextChannel

Properties

default_auto_archive_duration: 60 | 1440 | 4320 | 10080
guild_id: string
id: string
last_message_id: null | string
last_pin_timestamp: null | string
name: string
nsfw: boolean
parent_id: null | string
permission_overwrites: RawOverwrite[]
position: number
rate_limit_per_user: number
topic: null | string