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

PollingLocation

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

A location where a voter can vote. This may be an early vote site, an election day voting location, or a drop off location for a completed ballot.

interface PollingLocation {
endDate?: string;
latitude?: number;
longitude?: number;
name?: string;
notes?: string;
pollingHours?: string;
sources?: Source[];
startDate?: string;
voterServices?: string;
}

§Properties

§

The address of the location.

§
endDate?: string
[src]

The last date that this early vote site or drop off location may be used. This field is not populated for polling locations.

§
latitude?: number
[src]

Latitude of the location, in degrees north of the equator. Note this field may not be available for some locations.

§
longitude?: number
[src]

Longitude of the location, in degrees east of the Prime Meridian. Note this field may not be available for some locations.

§
name?: string
[src]

The name of the early vote site or drop off location. This field is not populated for polling locations.

§
notes?: string
[src]

Notes about this location (e.g. accessibility ramp or entrance to use).

§
pollingHours?: string
[src]

A description of when this location is open.

§
sources?: Source[]
[src]

A list of sources for this location. If multiple sources are listed the data has been aggregated from those sources.

§
startDate?: string
[src]

The first date that this early vote site or drop off location may be used. This field is not populated for polling locations.

§
voterServices?: string
[src]

The services provided by this early vote site or drop off location. This field is not populated for polling locations.