Skip to main content

FlyZoneAuthInformation

data class FlyZoneAuthInformation

Description: Authorization zone information

data class FlyZoneAuthInformation(
/**
* Unique identifier
*/
val id: String,
/**
* Aircraft serial number
*/
val aircraftSN: String,
/**
* Authorized flight zone name
*/
val name: String,
/**
* Authorized flight zone longitude
*/
val longitude: Double,
/**
* Authorized flight zone latitude
*/
val latitude: Double,
/**
* Authorized flight zone radius
*/
val radius: Float,
/**
* Authorized flight zone height
*/
val height: Float,
/**
* Authorized flight zone effective start timestamp (in seconds)
*/
val startTimeStamp: Long,
/**
* Authorized flight zone effective end timestamp (in seconds)
*/
val endTimeStamp: Long,
)