diff --git a/docs/docs/Categories.html b/docs/docs/Categories.html
index 440f9bb182f..19d92ded29d 100644
--- a/docs/docs/Categories.html
+++ b/docs/docs/Categories.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -461,7 +485,7 @@ Declaration
@@ -498,7 +522,7 @@ Declaration
@@ -511,7 +535,7 @@ Declaration
+
+
+
+
+
+
+
+
+ Stripe Reference
+
+ STPPaymentIntent Class Reference
+
+
+
+
+
+
+
+
+
+
+
STPPaymentIntent
+
+
A PaymentIntent tracks the process of collecting a payment from your customer.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
You cannot directly instantiate an STPPaymentIntent
. You should only use one that
+has been returned from an STPAPIClient
callback.
+
+
+
+
Declaration
+
+
Objective-C
+
- ( nonnull instancetype ) init ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The Stripe ID of the PaymentIntent.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic ) NSString * _Nonnull stripeId ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The client secret used to fetch this PaymentIntent
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic ) NSString * _Nonnull clientSecret ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Amount intended to be collected by this PaymentIntent.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic ) NSNumber * _Nonnull amount ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
If status is STPPaymentIntentStatusCanceled
, when the PaymentIntent was canceled.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSDate * canceledAt ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Capture method of this PaymentIntent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Confirmation method of this PaymentIntent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
When the PaymentIntent was created.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSDate * created ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The currency associated with the PaymentIntent.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic ) NSString * _Nonnull currency ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The description
field of the PaymentIntent.
+An arbitrary string attached to the object. Often useful for displaying to users.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSString * stripeDescription ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Whether or not this PaymentIntent was created in livemode.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic ) BOOL livemode ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Email address that the receipt for the resulting payment will be sent to.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSString * receiptEmail ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The URL to redirect your customer back to after they authenticate or cancel their
+payment on the payment method’s app or site.
+
+
This should be a URL that your app handles if the PaymentIntent is going to
+be confirmed in your app, and it has a redirect authorization flow.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSURL * returnUrl ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The Stripe ID of the Source used in this PaymentIntent.
+
+
+
+
Declaration
+
+
Objective-C
+
@property ( readonly , nonatomic , nullable ) NSString * sourceId ;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Status of the PaymentIntent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/docs/Categories/NSError(Stripe).html b/docs/docs/Categories/NSError(Stripe).html
index 5fa158cb52f..2911d783e47 100644
--- a/docs/docs/Categories/NSError(Stripe).html
+++ b/docs/docs/Categories/NSError(Stripe).html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -484,7 +508,7 @@
Return Value
or nil if there was no error information included in the JSON dictionary.
@@ -497,7 +521,7 @@
Return Value
diff --git a/docs/docs/Categories/UINavigationBar(Stripe_Theme).html b/docs/docs/Categories/UINavigationBar(Stripe_Theme).html
index 47e0cdb1103..3159a1ed454 100644
--- a/docs/docs/Categories/UINavigationBar(Stripe_Theme).html
+++ b/docs/docs/Categories/UINavigationBar(Stripe_Theme).html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -483,7 +507,7 @@
Parameters
@@ -519,7 +543,7 @@
Declaration
@@ -532,7 +556,7 @@
Declaration
diff --git a/docs/docs/Classes.html b/docs/docs/Classes.html
index dbc0e73d06d..0c02443d8b5 100644
--- a/docs/docs/Classes.html
+++ b/docs/docs/Classes.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -454,7 +478,7 @@
Declaration
@@ -485,7 +509,7 @@
Declaration
@@ -520,7 +544,7 @@
Declaration
@@ -555,7 +579,7 @@
Declaration
@@ -580,8 +604,8 @@
Declaration
An empty class representing that the user wishes to pay via Apple Pay. This can
be checked on an STPPaymentContext
, e.g:
if ([ paymentContext . selectedPaymentMethod isKindOfClass :[ STPApplePayPaymentMethod class ]]) {
- // Don't ask the user for their card number; they want to pay with apple pay.
-}
+ // Don't ask the user for their card number; they want to pay with apple pay.
+ }
@@ -594,7 +618,7 @@
Declaration
@@ -636,7 +660,7 @@
Declaration
@@ -678,7 +702,7 @@
Declaration
@@ -720,7 +744,7 @@
Declaration
@@ -762,7 +786,7 @@
Declaration
@@ -799,7 +823,7 @@
Declaration
@@ -834,7 +858,7 @@
Declaration
@@ -869,7 +893,7 @@
Declaration
@@ -907,7 +931,7 @@
Declaration
@@ -946,7 +970,7 @@
Declaration
@@ -983,7 +1007,7 @@
Declaration
@@ -1014,7 +1038,7 @@
Declaration
@@ -1054,7 +1078,7 @@
Declaration
@@ -1094,7 +1118,7 @@
Declaration
@@ -1129,7 +1153,7 @@
Declaration
@@ -1166,7 +1190,7 @@
Declaration
@@ -1200,7 +1224,7 @@
Declaration
@@ -1231,7 +1255,7 @@
Declaration
@@ -1266,7 +1290,7 @@
Declaration
@@ -1305,7 +1329,7 @@
Declaration
@@ -1346,7 +1370,7 @@
Declaration
@@ -1385,7 +1409,99 @@
Declaration
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A PaymentIntent tracks the process of collecting a payment from your customer.
+
+
+
+
See more
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
An object representing parameters used to confirm a PaymentIntent object.
+
+
A PaymentIntent must have a Source associated in order to successfully confirm it.
+
+
That Source can either be:
+
created during confirmation, by passing in a STPSourceParams
object in the sourceParams
field
+
a pre-existing Source can be associated by passing its id in the sourceId
field
+
or already set via your backend, either when creating or updating the PaymentIntent
+
+
+
See more
+
+
+
Declaration
+
+
Objective-C
+
@interface STPPaymentIntentParams : NSObject < STPFormEncodable >
+
+
+
+
@@ -1429,7 +1545,7 @@ Declaration
@@ -1464,7 +1580,7 @@
Declaration
@@ -1486,9 +1602,10 @@
Declaration
-
This is a helper class for handling redirect sources.
+
This is a helper class for handling redirects associated with STPSource and
+STPPaymentIntents.
-
Init and retain an instance with the redirect flow source you want to handle,
+
Init and retain an instance with the Source or PaymentIntent you want to handle,
then choose a redirect method. The context will fire the completion handler
when the redirect completes.
@@ -1501,8 +1618,8 @@
Declaration
have not actually completed the necessary actions to authorize the charge.
You should not use either this class, nor STPAPIClient
, as a way
-to determine when you should charge the source or to determine if the redirect
-was successful. Use Stripe webhooks on your backend server to listen for source
+to determine when you should charge the Source or to determine if the redirect
+was successful. Use Stripe webhooks on your backend server to listen for Source
state changes and to make the charge.
See https://stripe.com/docs/sources/best-practices
@@ -1519,7 +1636,7 @@
Declaration
@@ -1554,7 +1671,7 @@
Declaration
@@ -1589,7 +1706,7 @@
Declaration
@@ -1625,7 +1742,7 @@
Declaration
@@ -1660,7 +1777,7 @@
Declaration
@@ -1700,7 +1817,7 @@
Declaration
@@ -1735,7 +1852,7 @@
Declaration
@@ -1770,7 +1887,7 @@
Declaration
@@ -1806,7 +1923,7 @@
Declaration
@@ -1841,7 +1958,7 @@
Declaration
@@ -1876,7 +1993,7 @@
Declaration
@@ -1911,7 +2028,7 @@
Declaration
@@ -1949,7 +2066,7 @@
Declaration
@@ -1962,7 +2079,7 @@
Declaration
diff --git a/docs/docs/Classes/STPAPIClient.html b/docs/docs/Classes/STPAPIClient.html
index 421f98b7b9b..cf4fe9780ef 100644
--- a/docs/docs/Classes/STPAPIClient.html
+++ b/docs/docs/Classes/STPAPIClient.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -459,7 +483,7 @@
Declaration
@@ -514,7 +538,7 @@
Return Value
An instance of STPAPIClient.
@@ -568,7 +592,7 @@
Return Value
An instance of STPAPIClient.
@@ -598,7 +622,7 @@
Declaration
@@ -629,7 +653,7 @@
Declaration
@@ -666,7 +690,7 @@
Declaration
@@ -739,7 +763,7 @@
Parameters
@@ -801,7 +825,7 @@
Parameters
@@ -875,7 +899,7 @@
Parameters
@@ -949,7 +973,7 @@
Parameters
@@ -1025,7 +1049,7 @@
Parameters
@@ -1122,7 +1146,7 @@
Parameters
@@ -1195,7 +1219,7 @@
Parameters
@@ -1275,7 +1299,7 @@
Parameters
@@ -1350,7 +1374,7 @@
Parameters
@@ -1447,7 +1471,7 @@
Parameters
@@ -1497,7 +1521,153 @@
Parameters
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Declaration
+
+
Objective-C
+
- ( void ) retrievePaymentIntentWithClientSecret :( nonnull NSString * ) secret
+ completion :
+ ( nonnull STPPaymentIntentCompletionBlock )
+ completion ;
+
+
+
+
+
Parameters
+
+
+
+
+
+ secret
+
+
+
+
+
The client secret of the payment intent to be retrieved. Cannot be nil.
+
+
+
+
+
+
+ completion
+
+
+
+
+
The callback to run with the returned PaymentIntent object, or an error.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Confirms the PaymentIntent object with the provided params object.
+
+
At a minimum, the params object must include the clientSecret
.
+
+
+
+
+
+
Parameters
+
+
+
+
+
+ paymentIntentParams
+
+
+
+
+
+
+
+
+
+ completion
+
+
+
+
+
The callback to run with the returned PaymentIntent object, or an error.
+
+
+
+
+
+
+
@@ -1510,7 +1680,7 @@ Parameters
diff --git a/docs/docs/Classes/STPAddCardViewController.html b/docs/docs/Classes/STPAddCardViewController.html
index b486e4d312e..76099e3f05f 100644
--- a/docs/docs/Classes/STPAddCardViewController.html
+++ b/docs/docs/Classes/STPAddCardViewController.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -459,7 +483,7 @@
Declaration
@@ -522,7 +546,7 @@
Parameters
@@ -553,7 +577,7 @@
Declaration
@@ -584,7 +608,7 @@
Declaration
@@ -615,7 +639,7 @@
Declaration
@@ -649,7 +673,7 @@
Declaration
@@ -679,7 +703,7 @@
Declaration
@@ -710,7 +734,7 @@
Declaration
@@ -740,7 +764,7 @@
Declaration
@@ -753,7 +777,7 @@
Declaration
diff --git a/docs/docs/Classes/STPAddress.html b/docs/docs/Classes/STPAddress.html
index 57c7089b75d..adc883eb66f 100644
--- a/docs/docs/Classes/STPAddress.html
+++ b/docs/docs/Classes/STPAddress.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -459,7 +483,7 @@
Declaration
@@ -489,7 +513,7 @@
Declaration
@@ -519,7 +543,7 @@
Declaration
@@ -549,7 +573,7 @@
Declaration
@@ -579,7 +603,7 @@
Declaration
@@ -609,7 +633,7 @@
Declaration
@@ -639,7 +663,7 @@
Declaration
@@ -669,7 +693,7 @@
Declaration
@@ -699,7 +723,7 @@
Declaration
@@ -771,7 +795,7 @@
Parameters
@@ -824,7 +848,7 @@
Return Value
A new STPAddress instance with data copied from the passed in contact.
@@ -858,7 +882,7 @@
Return Value
A new PassKit contact with data copied from this STPAddress instance.
@@ -911,7 +935,7 @@
Return Value
A new STPAddress instance with data copied from the passed in contact.
@@ -967,7 +991,7 @@
Return Value
NO otherwise.
@@ -1014,7 +1038,7 @@
Return Value
YES if there is any data in this STPAddress that’s relevant for those fields.
@@ -1073,7 +1097,7 @@
Return Value
NO otherwise.
@@ -1118,7 +1142,7 @@
Return Value
YES if there is any data in this STPAddress that’s relevant for those fields.
@@ -1174,7 +1198,7 @@
Return Value
a PKAddressField value.
@@ -1230,7 +1254,7 @@
Return Value
a PKAddressField value.
@@ -1286,7 +1310,7 @@
Return Value
a PKContactField value.
@@ -1299,7 +1323,7 @@
Return Value
diff --git a/docs/docs/Classes/STPBankAccount.html b/docs/docs/Classes/STPBankAccount.html
index 7d3ef0656f9..a1fec10ec7b 100644
--- a/docs/docs/Classes/STPBankAccount.html
+++ b/docs/docs/Classes/STPBankAccount.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -467,7 +491,7 @@
Declaration
@@ -498,7 +522,7 @@
Declaration
@@ -528,7 +552,7 @@
Declaration
@@ -558,7 +582,7 @@
Declaration
@@ -588,7 +612,7 @@
Declaration
@@ -618,7 +642,7 @@
Declaration
@@ -648,7 +672,7 @@
Declaration
@@ -678,7 +702,7 @@
Declaration
@@ -709,7 +733,7 @@
Declaration
@@ -745,7 +769,7 @@
Declaration
@@ -775,7 +799,7 @@
Declaration
@@ -816,7 +840,7 @@
Declaration
@@ -829,7 +853,7 @@
Declaration
diff --git a/docs/docs/Classes/STPBankAccountParams.html b/docs/docs/Classes/STPBankAccountParams.html
index a630fabed3f..a43107bcf16 100644
--- a/docs/docs/Classes/STPBankAccountParams.html
+++ b/docs/docs/Classes/STPBankAccountParams.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -466,7 +490,7 @@
Declaration
@@ -497,7 +521,7 @@
Declaration
@@ -528,7 +552,7 @@
Declaration
@@ -558,7 +582,7 @@
Declaration
@@ -588,7 +612,7 @@
Declaration
@@ -618,7 +642,7 @@
Declaration
@@ -651,7 +675,7 @@
Declaration
@@ -664,7 +688,7 @@
Declaration
diff --git a/docs/docs/Classes/STPCard.html b/docs/docs/Classes/STPCard.html
index fb70e2587f0..27e21940f35 100644
--- a/docs/docs/Classes/STPCard.html
+++ b/docs/docs/Classes/STPCard.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -467,7 +491,7 @@
Declaration
@@ -497,7 +521,7 @@
Declaration
@@ -529,7 +553,7 @@
Declaration
@@ -559,7 +583,7 @@
Declaration
@@ -589,7 +613,7 @@
Declaration
@@ -619,7 +643,7 @@
Declaration
@@ -649,7 +673,7 @@
Declaration
@@ -679,7 +703,7 @@
Declaration
@@ -709,7 +733,7 @@
Declaration
@@ -739,7 +763,7 @@
Declaration
@@ -769,7 +793,7 @@
Declaration
@@ -801,7 +825,7 @@
Declaration
@@ -837,7 +861,7 @@
Declaration
@@ -891,7 +915,7 @@
Return Value
A string representing the brand, suitable for displaying to a user.
@@ -956,7 +980,7 @@
Return Value
returns STPCardBrandUnknown.
@@ -997,7 +1021,7 @@
Declaration
@@ -1027,7 +1051,7 @@
Declaration
@@ -1057,7 +1081,7 @@
Declaration
@@ -1087,7 +1111,7 @@
Declaration
@@ -1117,7 +1141,7 @@
Declaration
@@ -1147,7 +1171,7 @@
Declaration
@@ -1177,7 +1201,7 @@
Declaration
@@ -1297,7 +1321,7 @@
Return Value
an STPCard instance populated with the provided values.
@@ -1354,7 +1378,7 @@
Return Value
returns STPCardFundingTypeOther
.
@@ -1367,7 +1391,7 @@
Return Value
diff --git a/docs/docs/Classes/STPCardParams.html b/docs/docs/Classes/STPCardParams.html
index f381777e4e7..876bc257043 100644
--- a/docs/docs/Classes/STPCardParams.html
+++ b/docs/docs/Classes/STPCardParams.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -466,7 +490,7 @@
Declaration
@@ -496,7 +520,7 @@
Declaration
@@ -526,7 +550,7 @@
Declaration
@@ -556,7 +580,7 @@
Declaration
@@ -586,7 +610,7 @@
Declaration
@@ -622,7 +646,7 @@
Declaration
@@ -658,7 +682,7 @@
Declaration
@@ -691,7 +715,7 @@
Declaration
@@ -732,7 +756,7 @@
Declaration
@@ -762,7 +786,7 @@
Declaration
@@ -792,7 +816,7 @@
Declaration
@@ -822,7 +846,7 @@
Declaration
@@ -852,7 +876,7 @@
Declaration
@@ -882,7 +906,7 @@
Declaration
@@ -895,7 +919,7 @@
Declaration
diff --git a/docs/docs/Classes/STPCardValidator.html b/docs/docs/Classes/STPCardValidator.html
index b2c8f46f626..6399a02c5fb 100644
--- a/docs/docs/Classes/STPCardValidator.html
+++ b/docs/docs/Classes/STPCardValidator.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -462,7 +486,7 @@
Declaration
@@ -492,7 +516,7 @@
Declaration
@@ -572,7 +596,7 @@
Return Value
card (e.g. @4242 ).
@@ -628,7 +652,7 @@
Return Value
STPCardBrandUnknown, respectively.
@@ -683,7 +707,7 @@
Return Value
The set of possible lengths cards associated with that brand can be.
@@ -740,7 +764,7 @@
Return Value
The maximum length card numbers associated with that brand could be.
@@ -797,7 +821,7 @@
Return Value
The final fragment length card numbers associated with that brand use.
@@ -858,7 +882,7 @@
Return Value
month (e.g. @0 or @1 ).
@@ -942,7 +966,7 @@
Return Value
year (e.g. @1 or @2 ).
@@ -996,7 +1020,7 @@
Return Value
The maximum length of CVC numbers for cards associated with that brand.
@@ -1067,7 +1091,7 @@
Return Value
STPCardBrandVisa, and STPCardValidationStateInvalid for @12345 and any brand.
@@ -1122,7 +1146,7 @@
Return Value
STPCardValidationStateIncomplete if all fields are either incomplete or valid.
@@ -1135,7 +1159,7 @@
Return Value
diff --git a/docs/docs/Classes/STPConnectAccountParams.html b/docs/docs/Classes/STPConnectAccountParams.html
index 4096c4fe7b1..405247f5eb4 100644
--- a/docs/docs/Classes/STPConnectAccountParams.html
+++ b/docs/docs/Classes/STPConnectAccountParams.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -460,7 +484,7 @@
Declaration
@@ -493,7 +517,7 @@
Declaration
@@ -524,7 +548,7 @@
Declaration
@@ -592,7 +616,7 @@
Parameters
@@ -649,7 +673,7 @@
Parameters
@@ -662,7 +686,7 @@
Parameters
diff --git a/docs/docs/Classes/STPCoreViewController.html b/docs/docs/Classes/STPCoreViewController.html
index 59e11308b1e..61b4b78f14f 100644
--- a/docs/docs/Classes/STPCoreViewController.html
+++ b/docs/docs/Classes/STPCoreViewController.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -463,7 +487,7 @@
Declaration
@@ -512,7 +536,7 @@
Parameters
@@ -544,7 +568,7 @@
Declaration
@@ -575,7 +599,7 @@
Declaration
@@ -588,7 +612,7 @@
Declaration
diff --git a/docs/docs/Classes/STPCustomer.html b/docs/docs/Classes/STPCustomer.html
index c421fd481fe..f899193bdcf 100644
--- a/docs/docs/Classes/STPCustomer.html
+++ b/docs/docs/Classes/STPCustomer.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -511,7 +535,7 @@
Return Value
an instance of STPCustomer
@@ -541,7 +565,7 @@
Declaration
@@ -571,7 +595,7 @@
Declaration
@@ -601,7 +625,7 @@
Declaration
@@ -631,7 +655,7 @@
Declaration
@@ -644,7 +668,7 @@
Declaration
diff --git a/docs/docs/Classes/STPCustomerContext.html b/docs/docs/Classes/STPCustomerContext.html
index b51185c776b..ab358c3c533 100644
--- a/docs/docs/Classes/STPCustomerContext.html
+++ b/docs/docs/Classes/STPCustomerContext.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -492,7 +516,7 @@
Return Value
the newly-instantiated customer context.
@@ -526,7 +550,7 @@
Declaration
@@ -564,7 +588,7 @@
Declaration
@@ -577,7 +601,7 @@
Declaration
diff --git a/docs/docs/Classes/STPCustomerDeserializer.html b/docs/docs/Classes/STPCustomerDeserializer.html
index e3804957585..a9b10845162 100644
--- a/docs/docs/Classes/STPCustomerDeserializer.html
+++ b/docs/docs/Classes/STPCustomerDeserializer.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -509,7 +533,7 @@
Parameters
@@ -561,7 +585,7 @@
Parameters
@@ -591,7 +615,7 @@
Declaration
@@ -621,7 +645,7 @@
Declaration
@@ -634,7 +658,7 @@
Declaration
diff --git a/docs/docs/Classes/STPFile.html b/docs/docs/Classes/STPFile.html
index 27232b1c1a7..4b4bab2a962 100644
--- a/docs/docs/Classes/STPFile.html
+++ b/docs/docs/Classes/STPFile.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -464,7 +488,7 @@
Declaration
@@ -494,7 +518,7 @@
Declaration
@@ -529,7 +553,7 @@
Declaration
@@ -559,7 +583,7 @@
Declaration
@@ -589,7 +613,7 @@
Declaration
@@ -619,7 +643,7 @@
Declaration
@@ -632,7 +656,7 @@
Declaration
diff --git a/docs/docs/Classes/STPImageLibrary.html b/docs/docs/Classes/STPImageLibrary.html
index a0b24d411da..2eeadabca82 100644
--- a/docs/docs/Classes/STPImageLibrary.html
+++ b/docs/docs/Classes/STPImageLibrary.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -459,7 +483,7 @@
Declaration
@@ -489,7 +513,7 @@
Declaration
@@ -519,7 +543,7 @@
Declaration
@@ -549,7 +573,7 @@
Declaration
@@ -579,7 +603,7 @@
Declaration
@@ -609,7 +633,7 @@
Declaration
@@ -639,7 +663,7 @@
Declaration
@@ -669,7 +693,7 @@
Declaration
@@ -699,7 +723,7 @@
Declaration
@@ -729,7 +753,7 @@
Declaration
@@ -760,7 +784,7 @@
Declaration
@@ -790,7 +814,7 @@
Declaration
@@ -820,7 +844,7 @@
Declaration
@@ -833,7 +857,7 @@
Declaration
diff --git a/docs/docs/Classes/STPLegalEntityParams.html b/docs/docs/Classes/STPLegalEntityParams.html
index b089890d48f..b3f296420e3 100644
--- a/docs/docs/Classes/STPLegalEntityParams.html
+++ b/docs/docs/Classes/STPLegalEntityParams.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -463,7 +487,7 @@
Declaration
@@ -493,7 +517,7 @@
Declaration
@@ -523,7 +547,7 @@
Declaration
@@ -553,7 +577,7 @@
Declaration
@@ -585,7 +609,7 @@
Declaration
@@ -615,7 +639,7 @@
Declaration
@@ -645,7 +669,7 @@
Declaration
@@ -675,7 +699,7 @@
Declaration
@@ -705,7 +729,7 @@
Declaration
@@ -735,7 +759,7 @@
Declaration
@@ -767,7 +791,7 @@
Declaration
@@ -780,7 +804,7 @@
Declaration
diff --git a/docs/docs/Classes/STPPaymentActivityIndicatorView.html b/docs/docs/Classes/STPPaymentActivityIndicatorView.html
index 774859cefa3..aeccb92ab6c 100644
--- a/docs/docs/Classes/STPPaymentActivityIndicatorView.html
+++ b/docs/docs/Classes/STPPaymentActivityIndicatorView.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -459,7 +483,7 @@
Declaration
@@ -489,7 +513,7 @@
Declaration
@@ -519,7 +543,7 @@
Declaration
@@ -532,7 +556,7 @@
Declaration
diff --git a/docs/docs/Classes/STPPaymentCardTextField.html b/docs/docs/Classes/STPPaymentCardTextField.html
index dc1cd0a2b85..9abda4a62fb 100644
--- a/docs/docs/Classes/STPPaymentCardTextField.html
+++ b/docs/docs/Classes/STPPaymentCardTextField.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -468,7 +492,7 @@
Declaration
@@ -500,7 +524,7 @@
Declaration
@@ -532,7 +556,7 @@
Declaration
@@ -565,7 +589,7 @@
Declaration
@@ -600,7 +624,7 @@
Declaration
@@ -635,7 +659,7 @@
Declaration
@@ -665,7 +689,7 @@
Declaration
@@ -695,7 +719,7 @@
Declaration
@@ -726,7 +750,7 @@
Declaration
@@ -759,7 +783,7 @@
Declaration
@@ -793,7 +817,7 @@
Declaration
@@ -825,7 +849,7 @@
Declaration
@@ -857,7 +881,7 @@
Declaration
@@ -889,7 +913,7 @@
Declaration
@@ -919,7 +943,7 @@
Declaration
@@ -949,7 +973,7 @@
Declaration
@@ -979,7 +1003,7 @@
Declaration
@@ -1015,7 +1039,7 @@
Declaration
@@ -1045,7 +1069,7 @@
Declaration
@@ -1078,7 +1102,7 @@
Declaration
@@ -1111,7 +1135,7 @@
Declaration
@@ -1144,7 +1168,7 @@
Declaration
@@ -1178,7 +1202,7 @@
Declaration
@@ -1211,7 +1235,7 @@
Declaration
@@ -1244,7 +1268,7 @@
Declaration
@@ -1274,7 +1298,7 @@
Declaration
@@ -1310,7 +1334,7 @@
Declaration
@@ -1348,7 +1372,7 @@
Declaration
@@ -1381,7 +1405,7 @@
Declaration
@@ -1420,7 +1444,7 @@
Return Value
Whether or not the text field successfully began editing.
@@ -1459,7 +1483,7 @@
Return Value
Whether or not the field successfully stopped editing.
@@ -1489,7 +1513,7 @@
Declaration
@@ -1543,7 +1567,7 @@
Return Value
The cvc image used for a card brand.
@@ -1597,7 +1621,7 @@
Return Value
The brand image used for a card brand.
@@ -1651,7 +1675,7 @@
Return Value
The error image used for a card brand.
@@ -1704,7 +1728,7 @@
Return Value
the rectangle in which the receiver draws its brand image.
@@ -1757,7 +1781,7 @@
Return Value
The rectangle in which the receiver draws the text fields.
@@ -1770,7 +1794,7 @@
Return Value
diff --git a/docs/docs/Classes/STPPaymentConfiguration.html b/docs/docs/Classes/STPPaymentConfiguration.html
index a796419b02a..8df80b8792b 100644
--- a/docs/docs/Classes/STPPaymentConfiguration.html
+++ b/docs/docs/Classes/STPPaymentConfiguration.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -466,7 +490,7 @@
Declaration
@@ -501,7 +525,7 @@
Declaration
@@ -534,7 +558,7 @@
Declaration
@@ -572,7 +596,7 @@
Declaration
@@ -606,7 +630,7 @@
Declaration
@@ -638,7 +662,7 @@
Declaration
@@ -672,7 +696,7 @@
Declaration
@@ -707,7 +731,7 @@
Declaration
@@ -740,7 +764,7 @@
Declaration
@@ -780,7 +804,7 @@
Declaration
@@ -817,7 +841,7 @@
Declaration
@@ -854,7 +878,7 @@
Declaration
@@ -867,7 +891,7 @@
Declaration
diff --git a/docs/docs/Classes/STPPaymentContext.html b/docs/docs/Classes/STPPaymentContext.html
index 16259daca5e..d43531ea119 100644
--- a/docs/docs/Classes/STPPaymentContext.html
+++ b/docs/docs/Classes/STPPaymentContext.html
@@ -133,6 +133,12 @@
STPPaymentContext
+
+ STPPaymentIntent
+
+
+ STPPaymentIntentParams
+
STPPaymentMethodsViewController
@@ -281,6 +287,15 @@
STPFilePurpose
+
+ STPPaymentIntentCaptureMethod
+
+
+ STPPaymentIntentConfirmationMethod
+
+
+ STPPaymentIntentStatus
+
STPPaymentMethodType
@@ -378,9 +393,18 @@
STPJSONResponseCompletionBlock
+
+ STPPaymentIntentCompletionBlock
+
STPRedirectContextCompletionBlock
+
+ STPRedirectContextPaymentIntentCompletionBlock
+
+
+ STPRedirectContextSourceCompletionBlock
+
STPShippingMethodsCompletionBlock
@@ -491,7 +515,7 @@
Return Value
the newly-instantiated payment context
@@ -581,7 +605,7 @@
Return Value
the newly-instantiated payment context
@@ -617,7 +641,7 @@
Declaration
@@ -712,7 +736,7 @@
Return Value
the newly-instantiated payment context
@@ -752,7 +776,7 @@
Declaration
@@ -782,7 +806,7 @@
Declaration
@@ -812,7 +836,7 @@
Declaration
@@ -843,7 +867,7 @@
Declaration
@@ -873,7 +897,7 @@
Declaration
@@ -904,7 +928,7 @@
Declaration
@@ -934,7 +958,7 @@
Declaration
@@ -965,7 +989,7 @@
Declaration
@@ -996,7 +1020,7 @@
Declaration
@@ -1027,7 +1051,7 @@
Declaration
@@ -1058,7 +1082,7 @@
Declaration
@@ -1107,7 +1131,7 @@
Declaration
@@ -1151,7 +1175,7 @@
Declaration
@@ -1188,7 +1212,7 @@
Declaration
@@ -1230,7 +1254,7 @@
Declaration
@@ -1276,7 +1300,7 @@
Declaration
@@ -1310,7 +1334,7 @@
Declaration
@@ -1351,7 +1375,7 @@
Declaration
@@ -1387,7 +1411,7 @@
Declaration
@@ -1422,7 +1446,7 @@
Declaration
@@ -1455,7 +1479,7 @@
Declaration
@@ -1493,7 +1517,7 @@
Declaration
@@ -1531,7 +1555,7 @@
Declaration
@@ -1570,7 +1594,7 @@
Declaration
@@ -1609,7 +1633,7 @@
Declaration
@@ -1652,7 +1676,7 @@
Declaration
@@ -1665,7 +1689,7 @@
Declaration
diff --git a/docs/docs/Classes/STPPaymentIntent.html b/docs/docs/Classes/STPPaymentIntent.html
new file mode 100644
index 00000000000..35251b014fd
--- /dev/null
+++ b/docs/docs/Classes/STPPaymentIntent.html
@@ -0,0 +1,941 @@
+
+
+
+
STPPaymentIntent Class Reference
+
+
+
+
+
+
+
+
+
+
+
+
+