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

MessageResponse

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

Provides information about the results of a request to send a message to an endpoint address.

interface MessageResponse {
ApplicationId: string;
EndpointResult?: {
[key: string]: EndpointMessageResult | null | undefined;
}
| null;
RequestId?: string | null;
Result?: {
[key: string]: MessageResult | null | undefined;
}
| null;
}

§Properties

§
ApplicationId: string
[src]

The unique identifier for the application that was used to send the message.

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

A map that contains a multipart response for each address that the message was sent to. In the map, the endpoint ID is the key and the result is the value.

§
RequestId?: string | null
[src]

The identifier for the original request that the message was delivered for.

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

A map that contains a multipart response for each address (email address, phone number, or push notification token) that the message was sent to. In the map, the address is the key and the result is the value.