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

InAppTemplateResponse

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

In-App Template Response.

interface InAppTemplateResponse {
Arn?: string | null;
Content?: InAppMessageContent[] | null;
CreationDate: string;
CustomConfig?: {
[key: string]: string | null | undefined;
}
| null;
LastModifiedDate: string;
Layout?: Layout | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
TemplateDescription?: string | null;
TemplateName: string;
TemplateType: TemplateType;
Version?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The resource arn of the template.

§
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.

§
CreationDate: string
[src]

The creation date of the template.

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

Custom config to be sent to client.

§
LastModifiedDate: string
[src]

The last modified date of the template.

§
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.

§
TemplateName: string
[src]

The name of the template.

§
TemplateType: TemplateType
[src]

The type of the template.

§
Version?: string | null
[src]

The version id of the template.