SCPIncrementalAuthorizationStatus

Objective-C

enum SCPIncrementalAuthorizationStatus : NSUInteger {}

Swift

enum SCPIncrementalAuthorizationStatus : UInt, @unchecked Sendable

Represents the ability for a PaymentIntent to be incrementally authorized.

  • It is undetermined whether or not this PaymentIntent will be eligible for incremental authorizations. You can only perform incremental authorizations on uncaptured payments after confirmation.

    Declaration

    Objective-C

    SCPIncrementalAuthorizationStatusUnknown

    Swift

    case unknown = 0
  • This PaymentIntent is not eligible for incremental authorizations, or it was not requested.

    Declaration

    Objective-C

    SCPIncrementalAuthorizationStatusNotSupported

    Swift

    case notSupported = 1
  • This PaymentIntent is eligible for incremental authorizations.

    Declaration

    Objective-C

    SCPIncrementalAuthorizationStatusSupported

    Swift

    case supported = 2