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

QuietTime

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

Specifies the start and end times that define a time range when messages aren't sent to endpoints.

interface QuietTime {
End?: string | null;
Start?: string | null;
}

§Properties

§
End?: string | null
[src]

The specific time when quiet time ends. This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.

§
Start?: string | null
[src]

The specific time when quiet time begins. This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.