ChannelData type

An interface representing ChannelData. Channel data specific to messages received in Microsoft Teams

type ChannelData = {
  channel?: ChannelInfo
  eventType?: unknown
  feedbackLoopEnabled?: boolean
  meeting?: MeetingInfo
  membershipSource?: MembershipSource
  notification?: NotificationInfo
  onBehalfOf?: OnBehalfOf[]
  settings?: ChannelDataSettings
  sharedWithTeams?: TeamInfo[]
  streamId?: string
  streamSequence?: number
  streamType?: "informative" | "streaming" | "final"
  team?: TeamInfo
  tenant?: TenantInfo
  unsharedFromTeams?: TeamInfo[]
}