CardScanSheetResult
@frozen
public enum CardScanSheetResult
The result of an attempt to scan a card
-
The customer completed the scan
Declaration
Swift
case completed(card: ScannedCard)
-
The customer canceled the scan
Declaration
Swift
case canceled
-
The attempt failed.
Declaration
Swift
case failed(error: Error)
Parameters
error
The error encountered by the customer. You can display its
localizedDescription
to the customer.