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

DailySubEntityType

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

Represents all possible subentity types that are associated with DailyMetrics.

interface DailySubEntityType {
dayOfWeek?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
timeOfDay?: TimeOfDay;
}

§Properties

§
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.

§
timeOfDay?: TimeOfDay
[src]

Represents the time of the day in 24 hour format. Eg: 13:34:20 Currently supported DailyMetrics = NONE.