ListConversationsViewModel: {
    code: number;
    conversations: Conversation[];
    errorCode?: number | null;
    errorMessage?: string | null;
    errorName?: string | null;
    errorType?: string | null;
    research_context_id: number;
    status: boolean;
}

View Model for the List Conversations Feature. Represents all conversations in a given research context.

Type declaration

  • code: number
  • conversations: Conversation[]

    List of conversations in the research context.

  • Optional errorCode?: number | null
  • Optional errorMessage?: string | null
  • Optional errorName?: string | null
  • Optional errorType?: string | null
  • research_context_id: number

    Research context id for which the conversations are to be listed.

  • status: boolean

Generated using TypeDoc