MotionDelayShootEnum
enum class MotionDelayShootEnum
Description: Mobile time-lapse photography status
enum class MotionDelayShootEnum(var value: Int) {
UNKNOWN(0),
/**
* stop
*/
STOP(1),
/**
* pause
*/
PAUSE(2),
/**
* taking pictures
*/
TAKING(3),
/**
* Synthesizing
*/
JOINING(4);
}