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

EnterpriseTopazSidekickAgendaEntry

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

An AgendaEntry, e.g., a Calendar Event.

interface EnterpriseTopazSidekickAgendaEntry {
agendaItemUrl?: string;
chronology?:
| "STALE"
| "ALL_DAY"
| "PAST"
| "RECENTLY_PAST"
| "PRESENT"
| "NEAR_FUTURE"
| "FUTURE";
currentUserAttendingStatus?:
| "AWAITING"
| "YES"
| "NO"
| "MAYBE";
description?: string;
endDate?: string;
endTime?: string;
endTimeMs?: bigint;
eventId?: string;
guestsCanInviteOthers?: boolean;
guestsCanModify?: boolean;
guestsCanSeeGuests?: boolean;
hangoutId?: string;
hangoutUrl?: string;
isAllDay?: boolean;
lastModificationTimeMs?: bigint;
location?: string;
notifyToUser?: boolean;
otherAttendeesExcluded?: boolean;
requesterIsOwner?: boolean;
showFullEventDetailsToUse?: boolean;
startDate?: string;
startTime?: string;
startTimeMs?: bigint;
timeZone?: string;
title?: string;
}

§Properties

§
agendaItemUrl?: string
[src]

URL of the agenda item.

§
chronology?: "STALE" | "ALL_DAY" | "PAST" | "RECENTLY_PAST" | "PRESENT" | "NEAR_FUTURE" | "FUTURE"
[src]

The chronology from the present.

§

Person who created the event.

§
currentUserAttendingStatus?: "AWAITING" | "YES" | "NO" | "MAYBE"
[src]

Attendance status for the current user making the request. This is a convenience data member in order to avoid figuring out the same by iterating the invitee list above on the caller side.

§
description?: string
[src]

Description of the agenda item (i.e., typically, summary in calendar event).

§

Items related to the current AgendaEntry. E.g., related drive/mail/groups documents.

§
endDate?: string
[src]

End date "Friday, August 26" in the user's timezone.

§
endTime?: string
[src]

End time (HH:mm) in the user's timezone.

§
endTimeMs?: bigint
[src]

End time in milliseconds

§
eventId?: string
[src]

Event id provided by Calendar API.

§
guestsCanInviteOthers?: boolean
[src]

Whether the guests can invite other guests.

§
guestsCanModify?: boolean
[src]

Whether the guests can modify the event.

§
guestsCanSeeGuests?: boolean
[src]

Whether the guests of the event can be seen. If false, the user is going to be reported as the only attendee to the meeting, even though there may be more attendees.

§
hangoutId?: string
[src]

Hangout meeting identifier.

§
hangoutUrl?: string
[src]

Absolute URL for the Hangout meeting.

§

People attending the meeting.

§
isAllDay?: boolean
[src]

Whether the entry lasts all day.

§
lastModificationTimeMs?: bigint
[src]

Last time the event was modified.

§
location?: string
[src]

Agenda item location.

§
notifyToUser?: boolean
[src]

Whether this should be notified to the user.

§
otherAttendeesExcluded?: boolean
[src]

Whether guest list is not returned because number of attendees is too large.

§
requesterIsOwner?: boolean
[src]

Whether the requester is the owner of the agenda entry.

§
showFullEventDetailsToUse?: boolean
[src]

Whether the details of this entry should be displayed to the user.

§
startDate?: string
[src]

Start date "Friday, August 26" in the user's timezone.

§
startTime?: string
[src]

Start time (HH:mm) in the user's timezone.

§
startTimeMs?: bigint
[src]

Start time in milliseconds.

§
timeZone?: string
[src]

User's calendar timezone;

§
title?: string
[src]

Title of the agenda item.