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

CalendarOptions

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

Additional options for Calendar search

interface CalendarOptions {
locationQuery?: string[];
minusWords?: string[];
peopleQuery?: string[];
responseStatuses?:
| "ATTENDEE_RESPONSE_UNSPECIFIED"
| "ATTENDEE_RESPONSE_NEEDS_ACTION"
| "ATTENDEE_RESPONSE_ACCEPTED"
| "ATTENDEE_RESPONSE_DECLINED"
| "ATTENDEE_RESPONSE_TENTATIVE"[];
versionDate?: Date;
}

§Properties

§
locationQuery?: string[]
[src]

Matches only those events whose location contains all of the words in the given set. If the string contains quoted phrases, this method only matches those events whose location contain the exact phrase. Entries in the set are considered in "and". Word splitting example: ["New Zealand"] vs ["New","Zealand"] "New Zealand": matched by both "New and better Zealand": only matched by the later

§
minusWords?: string[]
[src]

Matches only those events that do not contain any of the words in the given set in title, description, location, or attendees. Entries in the set are considered in "or".

§
peopleQuery?: string[]
[src]

Matches only those events whose attendees contain all of the words in the given set. Entries in the set are considered in "and".

§
responseStatuses?: "ATTENDEE_RESPONSE_UNSPECIFIED" | "ATTENDEE_RESPONSE_NEEDS_ACTION" | "ATTENDEE_RESPONSE_ACCEPTED" | "ATTENDEE_RESPONSE_DECLINED" | "ATTENDEE_RESPONSE_TENTATIVE"[]
[src]

Matches only events for which the custodian gave one of these responses. If the set is empty or contains ATTENDEE_RESPONSE_UNSPECIFIED there will be no filtering on responses.

§
versionDate?: Date
[src]

Search the current version of the Calendar event, but export the contents of the last version saved before 12:00 AM UTC on the specified date. Enter the date in UTC.