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

InAppTemplateRequest

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

InApp Template Request.

interface InAppTemplateRequest {
Content?: InAppMessageContent[] | null;
CustomConfig?: {
[key: string]: string | null | undefined;
}
| null;
Layout?: Layout | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
TemplateDescription?: string | null;
}

§Properties

§
Content?: InAppMessageContent[] | null
[src]

The content of the message, can include up to 5 modals. Each modal must contain a message, a header, and background color. ImageUrl and buttons are optional.

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

Custom config to be sent to client.

§
Layout?: Layout | null
[src]

The layout of the message.

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

A string-to-string map of key-value pairs that defines the tags to associate with the message template. Each tag consists of a required tag key and an associated tag value.

§
TemplateDescription?: string | null
[src]

The description of the template.