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

GCMChannelResponse

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

Provides information about the status and settings of the GCM channel for an application. The GCM channel enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.

interface GCMChannelResponse {
ApplicationId?: string | null;
CreationDate?: string | null;
Credential: string;
Enabled?: boolean | null;
HasCredential?: boolean | null;
Id?: string | null;
IsArchived?: boolean | null;
LastModifiedBy?: string | null;
LastModifiedDate?: string | null;
Platform: string;
Version?: number | null;
}

§Properties

§
ApplicationId?: string | null
[src]

The unique identifier for the application that the GCM channel applies to.

§
CreationDate?: string | null
[src]

The date and time when the GCM channel was enabled.

§
Credential: string
[src]

The Web API Key, also referred to as an API_KEY or server key, that you received from Google to communicate with Google services.

§
Enabled?: boolean | null
[src]

Specifies whether the GCM channel is enabled for the application.

§
HasCredential?: boolean | null
[src]

(Not used) This property is retained only for backward compatibility.

§
Id?: string | null
[src]

(Deprecated) An identifier for the GCM channel. This property is retained only for backward compatibility.

§
IsArchived?: boolean | null
[src]

Specifies whether the GCM channel is archived.

§
LastModifiedBy?: string | null
[src]

The user who last modified the GCM channel.

§
LastModifiedDate?: string | null
[src]

The date and time when the GCM channel was last modified.

§
Platform: string
[src]

The type of messaging or notification platform for the channel. For the GCM channel, this value is GCM.

§
Version?: number | null
[src]

The current version of the GCM channel.