---
layout: default-layout
title: CodeType - Dynamsoft Code Parser Python Enumerations
description: "Explore CodeType values in Dynamsoft Code Parser Python API and learn how they define status, configuration, and processing behavior for modern web today."
keywords: code type, python
---

# CodeType

The `CodeType` class enumerates all supported code type strings.

```python
class EnumCodeType(str, Enum):
    # The code type string is "MRTD_TD1_ID"
    CT_MRTD_TD1_ID
    # The code type string is "MRTD_TD2_ID"
    CT_MRTD_TD2_ID
    # The code type string is "MRTD_TD2_VISA"
    CT_MRTD_TD2_VISA
    # The code type string is "MRTD_TD3_PASSPORT"
    CT_MRTD_TD3_PASSPORT
    # The code type string is "MRTD_TD3_VISA"
    CT_MRTD_TD3_VISA
    # The code type string is "MRTD_TD2_FRENCH_ID"
    CT_MRTD_TD2_FRENCH_ID
    # The code type string is "AAMVA_DL_ID"
    CT_AAMVA_DL_ID
    # The code type string is "AAMVA_DL_ID_WITH_MAG_STRIPE"
    CT_AAMVA_DL_ID_WITH_MAG_STRIPE
    # The code type string is "SOUTH_AFRICA_DL"
    CT_SOUTH_AFRICA_DL
    # The code type string is "AADHAAR"
    CT_AADHAAR
    # The code type string is "VIN"
    CT_VIN
    # The code type string is "GS1_AI"
    CT_GS1_AI
```
