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

ActivityResponse

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

Provides information about an activity that was performed by a campaign.

interface ActivityResponse {
ApplicationId: string;
CampaignId: string;
End?: string | null;
Id: string;
Result?: string | null;
ScheduledStart?: string | null;
Start?: string | null;
State?: string | null;
SuccessfulEndpointCount?: number | null;
TimezonesCompletedCount?: number | null;
TimezonesTotalCount?: number | null;
TotalEndpointCount?: number | null;
TreatmentId?: string | null;
}

§Properties

§
ApplicationId: string
[src]

The unique identifier for the application that the campaign applies to.

§
CampaignId: string
[src]

The unique identifier for the campaign that the activity applies to.

§
End?: string | null
[src]

The actual time, in ISO 8601 format, when the activity was marked CANCELLED or COMPLETED.

§
Id: string
[src]

The unique identifier for the activity.

§
Result?: string | null
[src]

Specifies whether the activity succeeded. Possible values are SUCCESS and FAIL.

§
ScheduledStart?: string | null
[src]

The scheduled start time, in ISO 8601 format, for the activity.

§
Start?: string | null
[src]

The actual start time, in ISO 8601 format, of the activity.

§
State?: string | null
[src]

The current status of the activity. Possible values are: PENDING, INITIALIZING, RUNNING, PAUSED, CANCELLED, and COMPLETED.

§
SuccessfulEndpointCount?: number | null
[src]

The total number of endpoints that the campaign successfully delivered messages to.

§
TimezonesCompletedCount?: number | null
[src]

The total number of time zones that were completed.

§
TimezonesTotalCount?: number | null
[src]

The total number of unique time zones that are in the segment for the campaign.

§
TotalEndpointCount?: number | null
[src]

The total number of endpoints that the campaign attempted to deliver messages to.

§
TreatmentId?: string | null
[src]

The unique identifier for the campaign treatment that the activity applies to. A treatment is a variation of a campaign that's used for A/B testing of a campaign.