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

ConferenceRecordsListOptions

import type { ConferenceRecordsListOptions } from "https://googleapis.deno.dev/v1/meet:v2.ts";

Additional options for Meet#conferenceRecordsList.

interface ConferenceRecordsListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Optional. User specified filtering condition in EBNF format. The following are the filterable fields: * space.meeting_code * space.name * start_time * end_time For example, consider the following filters: * space.name = "spaces/NAME" * space.meeting_code = "abc-mnop-xyz" * start_time>="2024-01-01T00:00:00.000Z" AND start_time<="2024-01-02T00:00:00.000Z" * end_time IS NULL

§
pageSize?: number
[src]

Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.

§
pageToken?: string
[src]

Optional. Page token returned from previous List Call.