customerGivenNames property

TextFieldWrapper? get customerGivenNames

Data element ID "DCT". Given names of the cardholder. (Given names include all names other than the Family Name. This includes all those names sometimes also called “first” and “middle” names.)

Implementation

TextFieldWrapper? get customerGivenNames => document
    .fieldByTypeName("CustomerGivenNames")
    ?.let((field) => TextFieldWrapper(field));