Skip to main content

UpgradeClientTypeEnum

enum class UpgradeClientTypeEnum

Description: Response result enumeration

    enum class UpgradeClientTypeEnum(var value: Int) {
/**
*The client is GND, the file transfer needs to switch the uplink and downlink
*/
CLIENT_TYPE_GND(0),

/**
*The client is SKY, file transfer does not need to switch uplink and downlink
*/
CLIENT_TYPE_SKY(1);
}