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

ItemResponse

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

Provides information about the results of a request to create or update an endpoint that's associated with an event.

interface ItemResponse {
EndpointItemResponse?: EndpointItemResponse | null;
EventsItemResponse?: {
[key: string]: EventItemResponse | null | undefined;
}
| null;
}

§Properties

§
EndpointItemResponse?: EndpointItemResponse | null
[src]

The response that was received after the endpoint data was accepted.

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

A multipart response object that contains a key and a value for each event in the request. In each object, the event ID is the key and an EventItemResponse object is the value.