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

GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint

import type { GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint } from "https://googleapis.deno.dev/v1/places:v1.ts";

Status changing points.

interface GoogleMapsPlacesV1PlaceOpeningHoursPeriodPoint {
day?: number;
hour?: number;
minute?: number;
truncated?: boolean;
}

§Properties

§

Date in the local timezone for the place.

§
day?: number
[src]

A day of the week, as an integer in the range 0-6. 0 is Sunday, 1 is Monday, etc.

§
hour?: number
[src]

The hour in 24 hour format. Ranges from 0 to 23.

§
minute?: number
[src]

The minute. Ranges from 0 to 59.

§
truncated?: boolean
[src]

Whether or not this endpoint was truncated. Truncation occurs when the real hours are outside the times we are willing to return hours between, so we truncate the hours back to these boundaries. This ensures that at most 24 * 7 hours from midnight of the day of the request are returned.