STPPaymentIntentSourceActionAuthorizeWithURL

@interface STPPaymentIntentSourceActionAuthorizeWithURL
    : NSObject <STPAPIResponseDecodable>

The STPPaymentIntentSourceAction details when type is STPPaymentIntentSourceActionTypeAuthorizeWithURL.

These are created & owned by the containing STPPaymentIntent.

  • Unavailable

    You cannot directly instantiate an STPPaymentIntentSourceActionAuthorizeWithURL.

    You cannot directly instantiate an STPPaymentIntentSourceActionAuthorizeWithURL.

    Declaration

    Objective-C

    - (nonnull instancetype)init;
  • url

    The URL where the user will authorize this charge.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSURL *_Nonnull url;

    Swift

    var url: URL { get }
  • The return URL that’ll be redirected back to when the user is done authorizing the charge.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSURL *returnURL;

    Swift

    var returnURL: URL? { get }