Documentation - v1.6.0-beta.24
    Preparing search index...

    Variable ClientCitationIconNameConst

    ClientCitationIconName: {
        AdobeFlash: "Adobe Flash";
        AdobeIllustrator: "Adobe Illustrator";
        AdobeInDesign: "Adobe InDesign";
        AdobePhotoshop: "Adobe Photoshop";
        GIF: "GIF";
        Image: "Image";
        MicrosoftExcel: "Microsoft Excel";
        MicrosoftLoop: "Microsoft Loop";
        MicrosoftOneNote: "Microsoft OneNote";
        MicrosoftPowerPoint: "Microsoft PowerPoint";
        MicrosoftSharePoint: "Microsoft SharePoint";
        MicrosoftVisio: "Microsoft Visio";
        MicrosoftWhiteboard: "Microsoft Whiteboard";
        MicrosoftWord: "Microsoft Word";
        PDF: "PDF";
        Sketch: "Sketch";
        Sound: "Sound";
        SourceCode: "Source Code";
        Text: "Text";
        Video: "Video";
        ZIP: "ZIP";
    } = ...

    Supported icon names for client citations. These icons are displayed in Teams to help users identify the type of content being referenced in AI-generated responses.

    The set of allowed values is defined by the Add citations section of the Microsoft Teams documentation (property citation.appearance.image.name).

    ClientCitationIconName is both a value (a frozen object with named members, e.g. ClientCitationIconName.MicrosoftWord) and a type alias (the string-literal union of all supported icon names). Either form may be assigned to citation.appearance.image.name.

    Type Declaration

    • ReadonlyAdobeFlash: "Adobe Flash"

      Adobe Flash multimedia icon

    • ReadonlyAdobeIllustrator: "Adobe Illustrator"

      Adobe Illustrator vector graphics icon

    • ReadonlyAdobeInDesign: "Adobe InDesign"

      Adobe InDesign layout design icon

    • ReadonlyAdobePhotoshop: "Adobe Photoshop"

      Adobe Photoshop image editing icon

    • ReadonlyGIF: "GIF"

      Animated GIF image icon

    • ReadonlyImage: "Image"

      Generic image file icon

    • ReadonlyMicrosoftExcel: "Microsoft Excel"

      Microsoft Excel spreadsheet icon

    • ReadonlyMicrosoftLoop: "Microsoft Loop"

      Microsoft Loop component icon

    • ReadonlyMicrosoftOneNote: "Microsoft OneNote"

      Microsoft OneNote notebook icon

    • ReadonlyMicrosoftPowerPoint: "Microsoft PowerPoint"

      Microsoft PowerPoint presentation icon

    • ReadonlyMicrosoftSharePoint: "Microsoft SharePoint"

      Microsoft SharePoint site or document icon

    • ReadonlyMicrosoftVisio: "Microsoft Visio"

      Microsoft Visio diagram icon

    • ReadonlyMicrosoftWhiteboard: "Microsoft Whiteboard"

      Microsoft Whiteboard icon

    • ReadonlyMicrosoftWord: "Microsoft Word"

      Microsoft Word document icon

    • ReadonlyPDF: "PDF"

      PDF document icon

    • ReadonlySketch: "Sketch"

      Sketch design tool icon

    • ReadonlySound: "Sound"

      Audio/sound file icon

    • ReadonlySourceCode: "Source Code"

      Source code file icon

    • ReadonlyText: "Text"

      Plain text file icon

    • ReadonlyVideo: "Video"

      Video file icon

    • ReadonlyZIP: "ZIP"

      ZIP archive file icon

    const citation: ClientCitation = {
    '@type': 'Claim',
    position: 1,
    appearance: {
    '@type': 'DigitalDocument',
    name: 'Quarterly report',
    abstract: 'Q1 results',
    image: { '@type': 'ImageObject', name: ClientCitationIconName.MicrosoftWord }
    }
    }