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

GoogleMapsPlacesV1PriceRange

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

The price range associated with a Place. end_price could be unset, which indicates a range without upper bound (e.g. "More than $100").

interface GoogleMapsPlacesV1PriceRange {
endPrice?: GoogleTypeMoney;
startPrice?: GoogleTypeMoney;
}

§Properties

§

The high end of the price range (exclusive). Price should be lower than this amount.

§

The low end of the price range (inclusive). Price should be at or above this amount.