/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Teams Channel object */ export interface TeamsChannel { /** Channel ID (read-only, set by Teams) */ id?: string; /** Channel display name */ displayName: string; /** Channel description */ description?: string; /** List of messages in the channel */ messages?: Klavis.TeamsMessage[]; }