SCPConfirmPaymentIntentConfiguration
Objective-C
@interface SCPConfirmPaymentIntentConfiguration : NSObject <NSCopying>
                Swift
class ConfirmPaymentIntentConfiguration : NSObject, NSCopying
                The ConfirmPaymentIntentConfiguration contains configuration information relevant to confirming a payment
intent.
- 
                  
                  
The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site. If you’d prefer to redirect to a mobile application, you can alternatively supply an application URI scheme.
This parameter is only used for redirect-based payment methods.
Defaults to nil.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *returnUrl;Swift
var returnUrl: String? { get } - 
                  
                  
Configuration for surcharge collection during payment confirmation.
Defaults to nil.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) SCPSurchargeConfiguration *surcharge;Swift
var surcharge: SurchargeConfiguration? { get } - 
                  
                  
Unavailable
Declaration
Objective-C
- (nonnull instancetype)init; - 
                  
                  
Unavailable
Declaration
Objective-C
+ (nonnull instancetype)new;