PanoramaEnum
enum class PanoramaEnum
Description: Panoramic photo type
enum class PanoramaEnum(var value: Int) {
UNKNOWN(0),
/**
* Horizontal shooting
*/
HORIZONTAL(1),
/**
* Vertical shot
*/
VERTICAL(2),
/**
* wide angle
*/
WIDE_ANGLE(3),
/**
* Spherical
*/
SPHERICAL(4);
}