Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReferenceSummary

import type { ReferenceSummary } from "https://aws-api.deno.dev/v0.3/services/connect.ts?docs=full";

Contains summary information about a reference. ReferenceSummary contains only one non null field between the URL and attachment based on the reference type.

interface ReferenceSummary {
Attachment?: AttachmentReference | null;
Url?: UrlReference | null;
}

§Properties

§
Attachment?: AttachmentReference | null
[src]

Information about the attachment reference if the referenceType is ATTACHMENT. Otherwise, null.

§
Url?: UrlReference | null
[src]

Information about the URL reference if the referenceType is URL. Otherwise, null.