MLKitBarcodeScanning 架構參考資料

MLKBarcodeDriverLicense


@interface MLKBarcodeDriverLicense : NSObject

駕照或身分證件資料表示法。

ANSI 駕照包含的欄位數量超過這個類別所代表的欄位數量。BarcoderawValue 屬性可用來存取其他欄位。

  • 擁有者的名字。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *firstName;
  • 擁有者的中間名稱。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *middleName;
  • 擁有者的姓氏。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *lastName;
  • 持有者的性別。1 是男性,2 則是女性。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *gender;
  • 持有人地址的城市。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *addressCity;
  • 持有人地址的州/省。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *addressState;
  • 持有人地址的街道。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *addressStreet;
  • 持有人地址的郵遞區號。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *addressZip;
  • 持有者的生日。日期格式因核發國家/地區而異。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *birthDate;
  • 駕照為 DL,身分證為ID

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *documentType;
  • 駕照號碼。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *licenseNumber;
  • 駕照到期日。日期格式因核發國家/地區而異。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *expiryDate;
  • 日期格式因核發國家/地區而異。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *issuingDate;
  • DL/ID 的核發國家/地區。

    聲明

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *issuingCountry;
  • 無法使用。

    聲明

    Objective-C

    - (nonnull instancetype)init;