/home/techb158/ileadtechnology.com/vendor/stripe/stripe-php/lib
NameSizeModeActions
ApiOperations/-0755rm
BillingPortal/-0755rm
Checkout/-0755rm
Exception/-0755rm
FinancialConnections/-0755rm
HttpClient/-0755rm
Identity/-0755rm
Issuing/-0755rm
Radar/-0755rm
Reporting/-0755rm
Service/-0755rm
Sigma/-0755rm
Terminal/-0755rm
TestHelpers/-0755rm
Util/-0755rm
Account.php170250644editdlrm
AccountLink.php8300644editdlrm
AlipayAccount.php23860644editdlrm
ApiRequestor.php191410644editdlrm
ApiResource.php34900644editdlrm
ApiResponse.php7120644editdlrm
ApplePayDomain.php10160644editdlrm
ApplicationFee.php42550644editdlrm
ApplicationFeeRefund.php25030644editdlrm
Balance.php23620644editdlrm
BalanceTransaction.php56740644editdlrm
BankAccount.php72980644editdlrm
BaseStripeClient.php114360644editdlrm
BaseStripeClientInterface.php9900644editdlrm
BitcoinReceiver.php42630644editdlrm
BitcoinTransaction.php8850644editdlrm
Capability.php29920644editdlrm
Card.php87540644editdlrm
CashBalance.php23580644editdlrm
Charge.php132200644editdlrm
Collection.php84700644editdlrm
CountrySpec.php17840644editdlrm
Coupon.php29910644editdlrm
CreditNote.php58370644editdlrm
CreditNoteLineItem.php18970644editdlrm
Customer.php158940644editdlrm
CustomerBalanceTransaction.php53360644editdlrm
Discount.php15700644editdlrm
Dispute.php51950644editdlrm
EphemeralKey.php15860644editdlrm
ErrorObject.php87900644editdlrm
Event.php154790644editdlrm
ExchangeRate.php14460644editdlrm
File.php38970644editdlrm
FileLink.php14860644editdlrm
FundingInstructions.php14130644editdlrm
Invoice.php206140644editdlrm
InvoiceItem.php38760644editdlrm
InvoiceLineItem.php30110644editdlrm
LineItem.php11920644editdlrm
LoginLink.php4260644editdlrm
Mandate.php11040644editdlrm
OAuth.php33930644editdlrm
OAuthErrorObject.php8610644editdlrm
Order.php52600644editdlrm
OrderItem.php3330644editdlrm
OrderReturn.php16890644editdlrm
PaymentIntent.php139990644editdlrm
PaymentLink.php44450644editdlrm
PaymentMethod.php40470644editdlrm
Payout.php68470644editdlrm
Person.php58320644editdlrm
Plan.php56890644editdlrm
Price.php57400644editdlrm
Product.php47570644editdlrm
PromotionCode.php22530644editdlrm
Quote.php90050644editdlrm
Recipient.php27730644editdlrm
RecipientTransfer.php9180644editdlrm
Refund.php48530644editdlrm
RequestTelemetry.php5390644editdlrm
Review.php34250644editdlrm
SearchResult.php65150644editdlrm
SetupAttempt.php24490644editdlrm
SetupIntent.php77290644editdlrm
ShippingRate.php23910644editdlrm
SingletonApiResource.php9590644editdlrm
SKU.php27860644editdlrm
Source.php85730644editdlrm
SourceTransaction.php4080644editdlrm
Stripe.php72210644editdlrm
StripeClient.php40590644editdlrm
StripeClientInterface.php5860644editdlrm
StripeObject.php190290644editdlrm
StripeStreamingClientInterface.php2380644editdlrm
Subscription.php121540644editdlrm
SubscriptionItem.php56410644editdlrm
SubscriptionSchedule.php41660644editdlrm
TaxCode.php6680644editdlrm
TaxId.php52980644editdlrm
TaxRate.php30080644editdlrm
ThreeDSecure.php26060644editdlrm
Token.php36290644editdlrm
Topup.php40030644editdlrm
Transfer.php63810644editdlrm
TransferReversal.php33230644editdlrm
UsageRecord.php9800644editdlrm
UsageRecordSummary.php8120644editdlrm
Webhook.php15150644editdlrm
WebhookEndpoint.php23110644editdlrm
WebhookSignature.php43770644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/stripe/stripe-php/lib/SetupIntent.php (7729B)
PaymentIntents to drive * the payment flow. * * Create a SetupIntent as soon as you're ready to collect your customer's payment * credentials. Do not maintain long-lived, unconfirmed SetupIntents as they may no * longer be valid. The SetupIntent then transitions through multiple statuses as * it guides you through the setup process. * * Successful SetupIntents result in payment credentials that are optimized for * future payments. For example, cardholders in certain regions may need to be * run through Strong Customer * Authentication at the time of payment method collection in order to * streamline later off-session payments. * If the SetupIntent is used with a Customer, * upon success, it will automatically attach the resulting payment method to that * Customer. We recommend using SetupIntents or setup_future_usage * on PaymentIntents to save payment methods in order to prevent saving invalid or * unoptimized payment methods. * * By using SetupIntents, you ensure that your customers experience the minimum set * of required friction, even as regulations change over time. * * Related guide: Setup * Intents API. * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. * @property null|string|\Stripe\StripeObject $application ID of the Connect application that created the SetupIntent. * @property null|string $cancellation_reason Reason for cancellation of this SetupIntent, one of abandoned, requested_by_customer, or duplicate. * @property null|string $client_secret

The client secret of this SetupIntent. Used for client-side retrieval using a publishable key.

The client secret can be used to complete payment setup from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.

* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property null|string|\Stripe\Customer $customer

ID of the Customer this SetupIntent belongs to, if one exists.

If present, the SetupIntent's payment method will be attached to the Customer on successful setup. Payment methods attached to other Customers cannot be used with this SetupIntent.

* @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users. * @property null|\Stripe\ErrorObject $last_setup_error The error encountered in the previous SetupIntent confirmation. * @property null|string|\Stripe\SetupAttempt $latest_attempt The most recent SetupAttempt for this SetupIntent. * @property bool $livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode. * @property null|string|\Stripe\Mandate $mandate ID of the multi use Mandate generated by the SetupIntent. * @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. * @property null|\Stripe\StripeObject $next_action If present, this property tells you what actions you need to take in order for your customer to continue payment setup. * @property null|string|\Stripe\Account $on_behalf_of The account (if any) for which the setup is intended. * @property null|string|\Stripe\PaymentMethod $payment_method ID of the payment method used with this SetupIntent. * @property null|\Stripe\StripeObject $payment_method_options Payment-method-specific configuration for this SetupIntent. * @property string[] $payment_method_types The list of payment method types (e.g. card) that this SetupIntent is allowed to set up. * @property null|string|\Stripe\Mandate $single_use_mandate ID of the single_use Mandate generated by the SetupIntent. * @property string $status Status of this SetupIntent, one of requires_payment_method, requires_confirmation, requires_action, processing, canceled, or succeeded. * @property string $usage

Indicates how the payment method is intended to be used in the future.

Use on_session if you intend to only reuse the payment method when the customer is in your checkout flow. Use off_session if your customer may or may not be in your checkout flow. If not provided, this value defaults to off_session.

*/ class SetupIntent extends ApiResource { const OBJECT_NAME = 'setup_intent'; use ApiOperations\All; use ApiOperations\Create; use ApiOperations\Retrieve; use ApiOperations\Update; const STATUS_CANCELED = 'canceled'; const STATUS_PROCESSING = 'processing'; const STATUS_REQUIRES_ACTION = 'requires_action'; const STATUS_REQUIRES_CONFIRMATION = 'requires_confirmation'; const STATUS_REQUIRES_PAYMENT_METHOD = 'requires_payment_method'; const STATUS_SUCCEEDED = 'succeeded'; /** * @param null|array $params * @param null|array|string $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent the canceled setup intent */ public function cancel($params = null, $opts = null) { $url = $this->instanceUrl() . '/cancel'; list($response, $opts) = $this->_request('post', $url, $params, $opts); $this->refreshFrom($response, $opts); return $this; } /** * @param null|array $params * @param null|array|string $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent the confirmed setup intent */ public function confirm($params = null, $opts = null) { $url = $this->instanceUrl() . '/confirm'; list($response, $opts) = $this->_request('post', $url, $params, $opts); $this->refreshFrom($response, $opts); return $this; } /** * @param null|array $params * @param null|array|string $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent the verified setup intent */ public function verifyMicrodeposits($params = null, $opts = null) { $url = $this->instanceUrl() . '/verify_microdeposits'; list($response, $opts) = $this->_request('post', $url, $params, $opts); $this->refreshFrom($response, $opts); return $this; } }