Interface INL

interface INL {
    apps: {
        id: string;
        name: string;
    }[];
    conversationalResponse: {
        apps: [{
            id: string;
            name: string;
        }];
        contextInfo: string;
        drillDownURI: string;
        responses: {
            followupSentence: string;
            imageUrl: string;
            infoType: string;
            infoValues: [];
            narrative: {
                text: string;
            };
            sentence: {
                text: string;
            };
            type: string;
        }[];
        sentenceWithMatches: string;
    }[];
    nluInfo: {
        elements: {
            entity: boolean;
            errorText: string;
            filterFieldName: string;
            filterText: string;
            isFilter: boolean;
            text: string;
            type: string;
            typeName: string;
            typeTranslated: string;
        }[];
    };
}

Properties

apps: {
    id: string;
    name: string;
}[]

Type declaration

  • id: string
  • name: string
conversationalResponse: {
    apps: [{
        id: string;
        name: string;
    }];
    contextInfo: string;
    drillDownURI: string;
    responses: {
        followupSentence: string;
        imageUrl: string;
        infoType: string;
        infoValues: [];
        narrative: {
            text: string;
        };
        sentence: {
            text: string;
        };
        type: string;
    }[];
    sentenceWithMatches: string;
}[]

Type declaration

  • apps: [{
        id: string;
        name: string;
    }]
  • contextInfo: string
  • drillDownURI: string
  • responses: {
        followupSentence: string;
        imageUrl: string;
        infoType: string;
        infoValues: [];
        narrative: {
            text: string;
        };
        sentence: {
            text: string;
        };
        type: string;
    }[]
  • sentenceWithMatches: string
nluInfo: {
    elements: {
        entity: boolean;
        errorText: string;
        filterFieldName: string;
        filterText: string;
        isFilter: boolean;
        text: string;
        type: string;
        typeName: string;
        typeTranslated: string;
    }[];
}

Type declaration

  • elements: {
        entity: boolean;
        errorText: string;
        filterFieldName: string;
        filterText: string;
        isFilter: boolean;
        text: string;
        type: string;
        typeName: string;
        typeTranslated: string;
    }[]