FlyZoneInformation
data class FlyZoneInformation
Description: Fly zone data, including fixed no-fly zones, temporary no-fly zones, and geofences
/**
* No-fly zone information
*/
data class FlyZoneInformation(
/**
* No-fly zone ID
*/
val flyZoneId: Long,
/**
* No-fly zone name
*/
val name: String?,
/**
* No-fly zone type
*/
val category: FlyZoneCategory,
/**
* No-fly zone shape
*/
val shape: FlyZoneShape,
/**
* No-fly zone lower limit (in meters)
*/
val lowerLimit: Double,
/**
* No-fly zone upper limit (in meters)
*/
val upperLimit: Double,
/**
* Circle center coordinates
*/
val circleCenter: LocationCoordinate2D?,
/**
* Circle radius (in meters)
*/
val circleRadius: Double,
/**
* Polygon coordinate points
*/
val polygonPoints: List<LocationCoordinate2D>? = null,
/**
* Height
*/
val height: Double = 0.0,
/**
* Color
*/
val color: String? = null,
val startTime: Int = 0,
val endTime: Int = 0,
val permanent: String? = null,
val identifier: String? = null
)