CardEntryStatus
public enum CardEntryStatus : Int
CardEntryStatus enum represents the status of card entry.
It includes active, invalid, valid, and processing cases.ww
-
Represents state where Card Entry accept card details.
Declaration
Swift
case active -
Represents state where Card Entry contains validation errors.
Declaration
Swift
case invalid -
Represents state where Card Entry contain validated data. Ready to proceed with payments
Declaration
Swift
case valid -
Represents state where Payment is proceeding and loader indication is presented
Declaration
Swift
case processing -
Indicates whether the card entry status can proceeed with payment
Declaration
Swift
public var canSubmit: Bool { get }