Skip to main content

RidSelfIdEnum

enum class RidSelfIdEnum

Description: Ride self id

    enum class RidSelfIdEnum(val value: Int) {
/**
* test description state
*/
TXT_DESC(0),

/**
* emergency description state
*/
EMERGENCY_DESC(1),

/**
* ext status description state
*/
EXT_STATUS_DESC(2),

/**
* reserved minimum state
*/
RESERVED_MIN(3),

/**
* reserved maximum state
*/
RESERVED_MAX(200),

/**
* private minimum state
*/
PRIVATE_USE_MIN(201),

/**
* private maximum state
*/
PRIVATE_USE_MAX(255);
}