DroneLostActionEnum
enum class DroneLostActionEnum
Description: Aircraft absence behavior enumeration class
enum class DroneLostActionEnum(val value: Int) {
/**
* unknown
*/
UNKNOWN(0),
/**
* Lost and returned
*/
BACK(1),
/**
* Lost contact hovering
*/
HOVER(2),
/**
* Lost contact and landed
*/
LANDING(3);
}