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

Locale

import type { Locale } from "https://aws-api.deno.dev/v0.4/services/mturk.ts?docs=full";

The Locale data structure represents a geographical region or location.

interface Locale {
Country: string;
Subdivision?: string | null;
}

§Properties

§
Country: string
[src]

The country of the locale. Must be a valid ISO 3166 country code. For example, the code US refers to the United States of America.

§
Subdivision?: string | null
[src]

The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. For example, the code WA refers to the state of Washington.