PaymentOptions

Payment options accepted by a place

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
acceptsCreditCards boolean
acceptsDebitCards boolean
acceptsCashOnly boolean
acceptsNfc boolean
View JSON Schema on GitHub

JSON Schema

google-maps-places-payment-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaymentOptions",
  "type": "object",
  "description": "Payment options accepted by a place",
  "properties": {
    "acceptsCreditCards": {
      "type": "boolean"
    },
    "acceptsDebitCards": {
      "type": "boolean"
    },
    "acceptsCashOnly": {
      "type": "boolean"
    },
    "acceptsNfc": {
      "type": "boolean"
    }
  }
}