OPPCheckoutSkipCVVMode

enum OPPCheckoutSkipCVVMode : NSInteger {}

An enumeration for the possible modes to skip CVV check.

  • Always request CVV for card payments.

    Declaration

    Objective-C

    OPPCheckoutSkipCVVModeNever

    Swift

    case never = 0
  • Skip CVV check only for payments by stored cards.

    Declaration

    Objective-C

    OPPCheckoutSkipCVVModeForStoredCards

    Swift

    case forStoredCards = 1
  • Always skip CVV check. CVV field won’t be displayed in card payment forms.

    Declaration

    Objective-C

    OPPCheckoutSkipCVVModeAlways

    Swift

    case always = 2