/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Slack Channel (Conversation) object */ export interface SlackChannel { /** Channel name */ name: string; /** Channel description/purpose */ description?: string; /** Whether the channel is private */ is_private?: boolean; /** Messages in this channel */ messages?: Klavis.SlackMessage[]; }