STPIntentActionAlipayHandleRedirect
Objective-C
@interface STPIntentActionAlipayHandleRedirect
: NSObject <STPAPIResponseDecodable>
Swift
class STPIntentActionAlipayHandleRedirect : NSObject, STPAPIResponseDecodable
Contains instructions for authenticating a payment by redirecting your customer to Alipay App or website.
-
The native URL you must redirect your customer to in order to authenticate the payment.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSURL *nativeURL;
Swift
var nativeURL: URL? { get }
-
If the customer does not exit their browser while authenticating, they will be redirected to this specified URL after completion.
Declaration
Objective-C
@property (nonatomic, readonly) NSURL *_Nonnull returnURL;
Swift
var returnURL: URL { get }
-
The URL you must redirect your customer to in order to authenticate the payment.
Declaration
Objective-C
@property (nonatomic, readonly) NSURL *_Nonnull url;
Swift
var url: URL { get }
-
Unavailable
You cannot directly instantiate an STPPaymentIntentActionAlipayHandleRedirect.
You cannot directly instantiate an
STPPaymentIntentActionAlipayHandleRedirect
.Declaration
Objective-C
- (nonnull instancetype)init;
-
Unavailable
You cannot directly instantiate an STPPaymentIntentActionAlipayHandleRedirect.
You cannot directly instantiate an
STPPaymentIntentActionAlipayHandleRedirect
.Declaration
Objective-C
+ (nonnull instancetype)new;