• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stripe / stripe-php / 6471862601

10 Oct 2023 04:02PM UTC coverage: 69.665% (-0.5%) from 70.141%
6471862601

push

github

web-flow
Merge pull request #1570 from localheinz/feature/coveralls

Enhancement: Use `coverallsapp/github-action` to report code coverage

2393 of 3435 relevant lines covered (69.67%)

3.5 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/lib/SetupIntent.php
1
<?php
2

3
// File generated from our OpenAPI spec
4

5
namespace Stripe;
6

7
/**
8
 * A SetupIntent guides you through the process of setting up and saving a customer's payment credentials for future payments.
9
 * For example, you can use a SetupIntent to set up and save your customer's card without immediately collecting a payment.
10
 * Later, you can use <a href="https://stripe.com/docs/api#payment_intents">PaymentIntents</a> to drive the payment flow.
11
 *
12
 * Create a SetupIntent when you're ready to collect your customer's payment credentials.
13
 * Don't maintain long-lived, unconfirmed SetupIntents because they might not be valid.
14
 * The SetupIntent transitions through multiple <a href="https://stripe.com/docs/payments/intents#intent-statuses">statuses</a> as it guides
15
 * you through the setup process.
16
 *
17
 * Successful SetupIntents result in payment credentials that are optimized for future payments.
18
 * For example, cardholders in <a href="/guides/strong-customer-authentication">certain regions</a> might need to be run through
19
 * <a href="https://stripe.com/docs/strong-customer-authentication">Strong Customer Authentication</a> during payment method collection
20
 * to streamline later <a href="https://stripe.com/docs/payments/setup-intents">off-session payments</a>.
21
 * If you use the SetupIntent with a <a href="https://stripe.com/docs/api#setup_intent_object-customer">Customer</a>,
22
 * it automatically attaches the resulting payment method to that Customer after successful setup.
23
 * We recommend using SetupIntents or <a href="https://stripe.com/docs/api#payment_intent_object-setup_future_usage">setup_future_usage</a> on
24
 * PaymentIntents to save payment methods to prevent saving invalid or unoptimized payment methods.
25
 *
26
 * By using SetupIntents, you can reduce friction for your customers, even as regulations change over time.
27
 *
28
 * Related guide: <a href="https://stripe.com/docs/payments/setup-intents">Setup Intents API</a>
29
 *
30
 * @property string $id Unique identifier for the object.
31
 * @property string $object String representing the object's type. Objects of the same type share the same value.
32
 * @property null|string|\Stripe\StripeObject $application ID of the Connect application that created the SetupIntent.
33
 * @property null|bool $attach_to_self <p>If present, the SetupIntent's payment method will be attached to the in-context Stripe Account.</p><p>It can only be used for this Stripe Account’s own money movement flows like InboundTransfer and OutboundTransfers. It cannot be set to true when setting up a PaymentMethod for a Customer, and defaults to false when attaching a PaymentMethod to a Customer.</p>
34
 * @property null|\Stripe\StripeObject $automatic_payment_methods Settings for dynamic payment methods compatible with this Setup Intent
35
 * @property null|string $cancellation_reason Reason for cancellation of this SetupIntent, one of <code>abandoned</code>, <code>requested_by_customer</code>, or <code>duplicate</code>.
36
 * @property null|string $client_secret <p>The client secret of this SetupIntent. Used for client-side retrieval using a publishable key.</p><p>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.</p>
37
 * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
38
 * @property null|string|\Stripe\Customer $customer <p>ID of the Customer this SetupIntent belongs to, if one exists.</p><p>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.</p>
39
 * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
40
 * @property null|string[] $flow_directions <p>Indicates the directions of money movement for which this payment method is intended to be used.</p><p>Include <code>inbound</code> if you intend to use the payment method as the origin to pull funds from. Include <code>outbound</code> if you intend to use the payment method as the destination to send funds to. You can include both if you intend to use the payment method for both purposes.</p>
41
 * @property null|\Stripe\StripeObject $last_setup_error The error encountered in the previous SetupIntent confirmation.
42
 * @property null|string|\Stripe\SetupAttempt $latest_attempt The most recent SetupAttempt for this SetupIntent.
43
 * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
44
 * @property null|string|\Stripe\Mandate $mandate ID of the multi use Mandate generated by the SetupIntent.
45
 * @property null|\Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
46
 * @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.
47
 * @property null|string|\Stripe\Account $on_behalf_of The account (if any) for which the setup is intended.
48
 * @property null|string|\Stripe\PaymentMethod $payment_method ID of the payment method used with this SetupIntent.
49
 * @property null|\Stripe\StripeObject $payment_method_configuration_details Information about the payment method configuration used for this Setup Intent.
50
 * @property null|\Stripe\StripeObject $payment_method_options Payment method-specific configuration for this SetupIntent.
51
 * @property string[] $payment_method_types The list of payment method types (e.g. card) that this SetupIntent is allowed to set up.
52
 * @property null|string|\Stripe\Mandate $single_use_mandate ID of the single_use Mandate generated by the SetupIntent.
53
 * @property string $status <a href="https://stripe.com/docs/payments/intents#intent-statuses">Status</a> of this SetupIntent, one of <code>requires_payment_method</code>, <code>requires_confirmation</code>, <code>requires_action</code>, <code>processing</code>, <code>canceled</code>, or <code>succeeded</code>.
54
 * @property string $usage <p>Indicates how the payment method is intended to be used in the future.</p><p>Use <code>on_session</code> if you intend to only reuse the payment method when the customer is in your checkout flow. Use <code>off_session</code> if your customer may or may not be in your checkout flow. If not provided, this value defaults to <code>off_session</code>.</p>
55
 */
56
class SetupIntent extends ApiResource
57
{
58
    const OBJECT_NAME = 'setup_intent';
59

60
    use ApiOperations\All;
61
    use ApiOperations\Create;
62
    use ApiOperations\Retrieve;
63
    use ApiOperations\Update;
64

65
    const CANCELLATION_REASON_ABANDONED = 'abandoned';
66
    const CANCELLATION_REASON_DUPLICATE = 'duplicate';
67
    const CANCELLATION_REASON_REQUESTED_BY_CUSTOMER = 'requested_by_customer';
68

69
    const STATUS_CANCELED = 'canceled';
70
    const STATUS_PROCESSING = 'processing';
71
    const STATUS_REQUIRES_ACTION = 'requires_action';
72
    const STATUS_REQUIRES_CONFIRMATION = 'requires_confirmation';
73
    const STATUS_REQUIRES_PAYMENT_METHOD = 'requires_payment_method';
74
    const STATUS_SUCCEEDED = 'succeeded';
75

76
    /**
77
     * @param null|array $params
78
     * @param null|array|string $opts
79
     *
80
     * @throws \Stripe\Exception\ApiErrorException if the request fails
81
     *
82
     * @return \Stripe\SetupIntent the canceled setup intent
83
     */
84
    public function cancel($params = null, $opts = null)
1✔
85
    {
86
        $url = $this->instanceUrl() . '/cancel';
1✔
87
        list($response, $opts) = $this->_request('post', $url, $params, $opts);
1✔
88
        $this->refreshFrom($response, $opts);
1✔
89

90
        return $this;
1✔
91
    }
92

93
    /**
94
     * @param null|array $params
95
     * @param null|array|string $opts
96
     *
97
     * @throws \Stripe\Exception\ApiErrorException if the request fails
98
     *
99
     * @return \Stripe\SetupIntent the confirmed setup intent
100
     */
101
    public function confirm($params = null, $opts = null)
1✔
102
    {
103
        $url = $this->instanceUrl() . '/confirm';
1✔
104
        list($response, $opts) = $this->_request('post', $url, $params, $opts);
1✔
105
        $this->refreshFrom($response, $opts);
1✔
106

107
        return $this;
1✔
108
    }
109

110
    /**
111
     * @param null|array $params
112
     * @param null|array|string $opts
113
     *
114
     * @throws \Stripe\Exception\ApiErrorException if the request fails
115
     *
116
     * @return \Stripe\SetupIntent the verified setup intent
117
     */
118
    public function verifyMicrodeposits($params = null, $opts = null)
×
119
    {
120
        $url = $this->instanceUrl() . '/verify_microdeposits';
×
121
        list($response, $opts) = $this->_request('post', $url, $params, $opts);
×
122
        $this->refreshFrom($response, $opts);
×
123

124
        return $this;
×
125
    }
126
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc