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

SpecialHourPeriod

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

Represents a single time period when a location's operational hours differ from its normal business hours. A special hour period must represent a range of less than 24 hours. The open_time and start_date must predate the close_time and end_date. The close_time and end_date can extend to 11:59 a.m. on the day after the specified start_date. For example, the following inputs are valid: start_date=2015-11-23, open_time=08:00, close_time=18:00 start_date=2015-11-23, end_date=2015-11-23, open_time=08:00, close_time=18:00 start_date=2015-11-23, end_date=2015-11-24, open_time=13:00, close_time=11:59 The following inputs are not valid: start_date=2015-11-23, open_time=13:00, close_time=11:59 start_date=2015-11-23, end_date=2015-11-24, open_time=13:00, close_time=12:00 start_date=2015-11-23, end_date=2015-11-25, open_time=08:00, close_time=18:00

interface SpecialHourPeriod {
closed?: boolean;
closeTime?: TimeOfDay;
endDate?: Date;
openTime?: TimeOfDay;
startDate?: Date;
}

§Properties

§
closed?: boolean
[src]

Optional. If true, end_date, open_time, and close_time are ignored, and the date specified in start_date is treated as the location being closed for the entire day.

§
closeTime?: TimeOfDay
[src]

Optional. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Must be specified if closed is false.

§
endDate?: Date
[src]

Optional. The calendar date this special hour period ends on. If end_date field is not set, default to the date specified in start_date. If set, this field must be equal to or at most 1 day after start_date.

§
openTime?: TimeOfDay
[src]

Optional. Valid values are 00:00-24:00 where 24:00 represents midnight at the end of the specified day field. Must be specified if closed is false.

§
startDate?: Date
[src]

Required. The calendar date this special hour period starts on.