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

UpdateTemplateRequest

import type { UpdateTemplateRequest } from "https://aws-api.deno.dev/v0.4/services/connectcases.ts?docs=full";
interface UpdateTemplateRequest {
description?: string | null;
domainId: string;
layoutConfiguration?: LayoutConfiguration | null;
name?: string | null;
requiredFields?: RequiredField[] | null;
status?: TemplateStatus | null;
templateId: string;
}

§Properties

§
description?: string | null
[src]

A brief description of the template.

§
domainId: string
[src]

The unique identifier of the Cases domain.

§
layoutConfiguration?: LayoutConfiguration | null
[src]

Configuration of layouts associated to the template.

§
name?: string | null
[src]

The name of the template. It must be unique per domain.

§
requiredFields?: RequiredField[] | null
[src]

A list of fields that must contain a value for a case to be successfully created with this template.

§
status?: TemplateStatus | null
[src]

The status of the template.

§
templateId: string
[src]

A unique identifier for the template.