# Enumeration QRCodeErrorCorrectionLevel

`QRCodeErrorCorrectionLevel` describes the error correction level when processing the QR code.

```python
class EnumQRCodeErrorCorrectionLevel(IntEnum):
    #Error Correction Level H (high) 
    QRECL_ERROR_CORRECTION_H
    #Error Correction Level L (low) 
    QRECL_ERROR_CORRECTION_L
    #Error Correction Level M (medium-low) 
    QRECL_ERROR_CORRECTION_M
    #Error Correction Level Q (medium-high) 
    QRECL_ERROR_CORRECTION_Q
```
