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

PoiTargetingOptionDetails

import type { PoiTargetingOptionDetails } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Represents a targetable point of interest(POI). This will be populated in the poi_details field when targeting_type is TARGETING_TYPE_POI.

interface PoiTargetingOptionDetails {
readonly displayName?: string;
readonly latitude?: number;
readonly longitude?: number;
}

§Properties

§
readonly displayName?: string
[src]

Output only. The display name of a POI(e.g. "Times Square", "Space Needle"), followed by its full address if available.

§
readonly latitude?: number
[src]

Output only. Latitude of the POI rounding to 6th decimal place.

§
readonly longitude?: number
[src]

Output only. Longitude of the POI rounding to 6th decimal place.