SCPOvercaptureStatus

Objective-C

enum SCPOvercaptureStatus : NSUInteger {}

Swift

enum OvercaptureStatus : UInt, @unchecked Sendable

Represents overcapture support for a confirmed PaymentIntent.

  • It is undetermined whether overcapture is supported for this transaction.

    Declaration

    Objective-C

    SCPOvercaptureStatusUnknown

    Swift

    case unknown = 0
  • Overcapture is not supported for this transaction.

    Declaration

    Objective-C

    SCPOvercaptureStatusNotSupported

    Swift

    case notSupported = 1
  • Overcapture is supported for this transaction.

    Declaration

    Objective-C

    SCPOvercaptureStatusSupported

    Swift

    case supported = 2