Skip to Content

Channel (channel)

ChannelProps

Representa um canal (whitelabel).

type SocialProps = { type: 'FACEBOOK' | 'INSTAGRAM' | 'GITHUB' | 'TWITTER' | 'LINKEDIN'; url: string; }; type ChannelProps = { id: string; slug: string; name: string; description: string | null; avatar: FileProps | null; socials?: SocialProps[]; eventsCount?: number; };

Campos principais:

  • id / slug / name – Identificador, slug e nome do canal.
  • description? – Descrição opcional do canal.
  • avatar – Logo/imagem do canal.
  • socials? – Redes sociais configuradas.
  • eventsCount? – Quantidade de eventos do canal.
Last updated on