typedef struct _AAMVADATAELEMENT
{
L_UINT uStructSize;
L_CHAR ElementID[3];
L_CHAR* Value;
L_UINT Length;
} AAMVADATAELEMENT;
This structure contains all information encoded in an AAMVA CDS data element.
Size of AAMVADATAELEMENT structure, in bytes, for versioning. Use the sizeof operator to calculate this value.
The three characters ID of the data element as defined in the AAMVA CDS. Eg. "DAA"
The value of the data element.
The length of the data element's value, in bytes.
NOTE: ElementID can change between versions of the AAMVA CDS.