import { ApplicationTopicId } from './idTypesV2'; export interface ApplicationLink { /** ID of the link. */ id: ApplicationTopicId; /** Type of the topic. */ type: string; /** Human readable name. */ name: string | undefined; /** URL of the topic. */ externalUrl: string; /** URL to open the list of conversations related to the topic in Front. */ appUrl: string; }