ConversationData: {
    externalId: ExternalParticipantId;
    acceptTime: number | null;
    features: ConversationFeature[];
    id: string;
    participantsLimit: number;
    concurrent: boolean;
    needRate: boolean;
    chatId: string | null;
    roles: UserRole[];
    joinLink?: string;
    mediaModifiers: MediaModifiers;
    options: ConversationOption[];
    muteStates: Map<IRoomId, MuteStates>;
    unmuteOptions: MediaOption[];
    networkRating: number;
    waitingHall: boolean;
    observer: boolean;
    roomId: IRoomId;
    audienceMode: boolean;
    restricted: boolean;
}

Данные текущего звонка

Type declaration

  • externalId: ExternalParticipantId
  • acceptTime: number | null

    Время принятия звонка

  • features: ConversationFeature[]
  • id: string

    ID звонка

  • participantsLimit: number
  • concurrent: boolean
  • needRate: boolean
  • chatId: string | null
  • roles: UserRole[]

    Роли пользователя

  • Optional joinLink?: string

    Токен комнаты для подключения к звонку по ссылке

  • mediaModifiers: MediaModifiers
  • options: ConversationOption[]
  • muteStates: Map<IRoomId, MuteStates>
  • unmuteOptions: MediaOption[]
  • networkRating: number
  • waitingHall: boolean
  • observer: boolean
  • roomId: IRoomId
  • audienceMode: boolean
  • restricted: boolean