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

PhoneAccess

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

Phone access contains information required to dial into a conference using a regional phone number and a PIN that is specific to that phone number.

interface PhoneAccess {
languageCode?: string;
phoneNumber?: string;
pin?: string;
regionCode?: string;
}

§Properties

§
languageCode?: string
[src]

The BCP 47/LDML language code for the language associated with this phone access. To be parsed by the i18n LanguageCode utility. Examples: "es-419" for Latin American Spanish, "fr-CA" for Canadian French.

§
phoneNumber?: string
[src]

The phone number to dial for this meeting space in E.164 format. Full phone number with a leading '+' character.

§
pin?: string
[src]

The PIN that users must enter after dialing the given number. The PIN consists of only decimal digits and the length may vary.

§
regionCode?: string
[src]

The CLDR/ISO 3166 region code for the country associated with this phone access. To be parsed by the i18n RegionCode utility. Example: "SE" for Sweden.