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
PaymentIntentwill be eligible for incremental authorizations. You can only perform incremental authorizations on uncaptured payments after confirmation.Declaration
Objective-C
SCPIncrementalAuthorizationStatusUnknownSwift
case unknown = 0 - 
                  
                  
This PaymentIntent is not eligible for incremental authorizations, or it was not requested.
Declaration
Objective-C
SCPIncrementalAuthorizationStatusNotSupportedSwift
case notSupported = 1 - 
                  
                  
This PaymentIntent is eligible for incremental authorizations.
Declaration
Objective-C
SCPIncrementalAuthorizationStatusSupportedSwift
case supported = 2