shell bypass 403
# Coordinates
Latitude and longitude coordinates.
## Structure
`Coordinates`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `latitude` | `?float` | Optional | The latitude of the coordinate expressed in degrees. | getLatitude(): ?float | setLatitude(?float latitude): void |
| `longitude` | `?float` | Optional | The longitude of the coordinate expressed in degrees. | getLongitude(): ?float | setLongitude(?float longitude): void |
## Example (as JSON)
```json
{
"latitude": 200.94,
"longitude": 52.86
}
```