edutap.wallet_google.models.datatypes.location.LatLongPoint#

pydantic model edutap.wallet_google.models.datatypes.location.LatLongPoint#

see: https://developers.google.com/wallet/retail/loyalty-cards/rest/v1/LatLongPoint

Show JSON schema
{
   "title": "LatLongPoint",
   "description": "see: https://developers.google.com/wallet/retail/loyalty-cards/rest/v1/LatLongPoint",
   "type": "object",
   "properties": {
      "kind": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": "walletobjects#latLongPoint",
         "description": "deprecated",
         "title": "Kind"
      },
      "latitude": {
         "maximum": 90.0,
         "minimum": -90.0,
         "title": "Latitude",
         "type": "number"
      },
      "longitude": {
         "maximum": 180.0,
         "minimum": -180.0,
         "title": "Longitude",
         "type": "number"
      }
   },
   "required": [
      "latitude",
      "longitude"
   ]
}

Fields:
field kind: str | None = 'walletobjects#latLongPoint'#

deprecated

field latitude: float [Required]#
Constraints:
  • ge = -90.0

  • le = 90.0

field longitude: float [Required]#
Constraints:
  • ge = -180.0

  • le = 180.0