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

SendUsersMessageResponse

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

Provides information about which users and endpoints a message was sent to.

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

§Properties

§
ApplicationId: string
[src]

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

§
RequestId?: string | null
[src]

The unique identifier that was assigned to the message request.

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

An object that indicates which endpoints the message was sent to, for each user. The object lists user IDs and, for each user ID, provides the endpoint IDs that the message was sent to. For each endpoint ID, it provides an EndpointMessageResult object.