edutap.wallet_google.models.primitives.location.LatLongPoint#
- pydantic model edutap.wallet_google.models.primitives.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": { "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 latitude: float [Required]#
- Constraints:
ge = -90.0
le = 90.0
- field longitude: float [Required]#
- Constraints:
ge = -180.0
le = 180.0