SwarmMissionTypeEnum
enum class SwarmMissionTypeEnum
Description: The task type currently executed by the bee colony task
enum class SwarmMissionTypeEnum(val value: Int) {
/**
* 0: unknown
*/
UNKNOWN(0),
/**
* 1: Formation
*/
FORMATION(1),
/**
*2: Collaborative search
*/
COLLABORATIVE_SEARCH(2);
}