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

SearchCasesResponseItem

import type { SearchCasesResponseItem } from "https://aws-api.deno.dev/v0.4/services/connectcases.ts?docs=full";

A list of items that represent cases.

interface SearchCasesResponseItem {
caseId: string;
fields: FieldValue[];
tags?: {
[key: string]: string | null | undefined;
}
| null;
templateId: string;
}

§Properties

§
caseId: string
[src]

A unique identifier of the case.

§
fields: FieldValue[]
[src]

List of case field values.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

§
templateId: string
[src]

A unique identifier of a template.