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

LocationsGetDailyMetricsTimeSeriesOptions

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

Additional options for BusinessProfilePerformance#locationsGetDailyMetricsTimeSeries.

interface LocationsGetDailyMetricsTimeSeriesOptions {
dailyMetric?:
| "DAILY_METRIC_UNKNOWN"
| "BUSINESS_IMPRESSIONS_DESKTOP_MAPS"
| "BUSINESS_IMPRESSIONS_DESKTOP_SEARCH"
| "BUSINESS_IMPRESSIONS_MOBILE_MAPS"
| "BUSINESS_IMPRESSIONS_MOBILE_SEARCH"
| "BUSINESS_CONVERSATIONS"
| "BUSINESS_DIRECTION_REQUESTS"
| "CALL_CLICKS"
| "WEBSITE_CLICKS"
| "BUSINESS_BOOKINGS"
| "BUSINESS_FOOD_ORDERS"
| "BUSINESS_FOOD_MENU_CLICKS";
[dailyRange.endDate.day]?: number;
[dailyRange.endDate.month]?: number;
[dailyRange.endDate.year]?: number;
[dailyRange.startDate.day]?: number;
[dailyRange.startDate.month]?: number;
[dailyRange.startDate.year]?: number;
[dailySubEntityType.dayOfWeek]?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
[dailySubEntityType.timeOfDay.hours]?: number;
[dailySubEntityType.timeOfDay.minutes]?: number;
[dailySubEntityType.timeOfDay.nanos]?: number;
[dailySubEntityType.timeOfDay.seconds]?: number;
}

§Properties

§
dailyMetric?: "DAILY_METRIC_UNKNOWN" | "BUSINESS_IMPRESSIONS_DESKTOP_MAPS" | "BUSINESS_IMPRESSIONS_DESKTOP_SEARCH" | "BUSINESS_IMPRESSIONS_MOBILE_MAPS" | "BUSINESS_IMPRESSIONS_MOBILE_SEARCH" | "BUSINESS_CONVERSATIONS" | "BUSINESS_DIRECTION_REQUESTS" | "CALL_CLICKS" | "WEBSITE_CLICKS" | "BUSINESS_BOOKINGS" | "BUSINESS_FOOD_ORDERS" | "BUSINESS_FOOD_MENU_CLICKS"
[src]

Required. The metric to retrieve time series.

§
[dailyRange.endDate.day]?: number
[src]

Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.

§
[dailyRange.endDate.month]?: number
[src]

Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.

§
[dailyRange.endDate.year]?: number
[src]

Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.

§
[dailyRange.startDate.day]?: number
[src]

Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.

§
[dailyRange.startDate.month]?: number
[src]

Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.

§
[dailyRange.startDate.year]?: number
[src]

Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.

§
[dailySubEntityType.dayOfWeek]?: "DAY_OF_WEEK_UNSPECIFIED" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"
[src]

Represents the day of the week. Eg: MONDAY. Currently supported DailyMetrics = NONE.

§
[dailySubEntityType.timeOfDay.hours]?: number
[src]

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

§
[dailySubEntityType.timeOfDay.minutes]?: number
[src]

Minutes of hour of day. Must be from 0 to 59.

§
[dailySubEntityType.timeOfDay.nanos]?: number
[src]

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

§
[dailySubEntityType.timeOfDay.seconds]?: number
[src]

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.