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

DestinationStatus

import type { DestinationStatus } from "https://googleapis.deno.dev/v1/manufacturers:v1.ts";

The destination status.

interface DestinationStatus {
readonly approvedCountries?: string[];
destination?: string;
readonly disapprovedCountries?: string[];
readonly pendingCountries?: string[];
status?:
| "UNKNOWN"
| "ACTIVE"
| "PENDING"
| "DISAPPROVED";
}

§Properties

§
readonly approvedCountries?: string[]
[src]

Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is approved.

§
destination?: string
[src]

The name of the destination.

§
readonly disapprovedCountries?: string[]
[src]

Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is disapproved.

§
readonly pendingCountries?: string[]
[src]

Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is pending approval.

§
status?: "UNKNOWN" | "ACTIVE" | "PENDING" | "DISAPPROVED"
[src]

The status of the destination.