BillingPortal
2 years ago
Checkout
2 years ago
FinancialConnections
2 years ago
Identity
2 years ago
Issuing
2 years ago
Radar
2 years ago
Reporting
2 years ago
Sigma
2 years ago
Terminal
2 years ago
TestHelpers
2 years ago
AbstractService.php
2 years ago
AbstractServiceFactory.php
4 years ago
AccountLinkService.php
4 years ago
AccountService.php
2 years ago
ApplePayDomainService.php
2 years ago
ApplicationFeeService.php
2 years ago
BalanceService.php
4 years ago
BalanceTransactionService.php
2 years ago
ChargeService.php
2 years ago
CoreServiceFactory.php
2 years ago
CountrySpecService.php
2 years ago
CouponService.php
2 years ago
CreditNoteService.php
2 years ago
CustomerService.php
2 years ago
DisputeService.php
2 years ago
EphemeralKeyService.php
4 years ago
EventService.php
2 years ago
ExchangeRateService.php
2 years ago
FileLinkService.php
2 years ago
FileService.php
2 years ago
InvoiceItemService.php
2 years ago
InvoiceService.php
2 years ago
MandateService.php
4 years ago
OAuthService.php
4 years ago
OrderReturnService.php
2 years ago
OrderService.php
2 years ago
PaymentIntentService.php
2 years ago
PaymentLinkService.php
2 years ago
PaymentMethodService.php
2 years ago
PayoutService.php
2 years ago
PlanService.php
2 years ago
PriceService.php
2 years ago
ProductService.php
2 years ago
PromotionCodeService.php
2 years ago
QuoteService.php
2 years ago
RefundService.php
2 years ago
ReviewService.php
2 years ago
SetupAttemptService.php
2 years ago
SetupIntentService.php
2 years ago
ShippingRateService.php
2 years ago
SkuService.php
2 years ago
SourceService.php
4 years ago
SubscriptionItemService.php
2 years ago
SubscriptionScheduleService.php
2 years ago
SubscriptionService.php
2 years ago
TaxCodeService.php
2 years ago
TaxRateService.php
2 years ago
TokenService.php
4 years ago
TopupService.php
2 years ago
TransferService.php
2 years ago
WebhookEndpointService.php
2 years ago
PaymentMethodService.php
131 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace Stripe\Service; |
| 6 | |
| 7 | class PaymentMethodService extends \Stripe\Service\AbstractService |
| 8 | { |
| 9 | /** |
| 10 | * Returns a list of PaymentMethods. For listing a customer’s payment methods, you |
| 11 | * should use <a href="/docs/api/payment_methods/customer_list">List a Customer’s |
| 12 | * PaymentMethods</a>. |
| 13 | * |
| 14 | * @param null|array $params |
| 15 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 16 | * |
| 17 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 18 | * |
| 19 | * @return \Stripe\Collection<\Stripe\PaymentMethod> |
| 20 | */ |
| 21 | public function all($params = null, $opts = null) |
| 22 | { |
| 23 | return $this->requestCollection('get', '/v1/payment_methods', $params, $opts); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Attaches a PaymentMethod object to a Customer. |
| 28 | * |
| 29 | * To attach a new PaymentMethod to a customer for future payments, we recommend |
| 30 | * you use a <a href="/docs/api/setup_intents">SetupIntent</a> or a PaymentIntent |
| 31 | * with <a |
| 32 | * href="/docs/api/payment_intents/create#create_payment_intent-setup_future_usage">setup_future_usage</a>. |
| 33 | * These approaches will perform any necessary steps to ensure that the |
| 34 | * PaymentMethod can be used in a future payment. Using the |
| 35 | * <code>/v1/payment_methods/:id/attach</code> endpoint does not ensure that future |
| 36 | * payments can be made with the attached PaymentMethod. See <a |
| 37 | * href="/docs/payments/payment-intents#future-usage">Optimizing cards for future |
| 38 | * payments</a> for more information about setting up future payments. |
| 39 | * |
| 40 | * To use this PaymentMethod as the default for invoice or subscription payments, |
| 41 | * set <a |
| 42 | * href="/docs/api/customers/update#update_customer-invoice_settings-default_payment_method"><code>invoice_settings.default_payment_method</code></a>, |
| 43 | * on the Customer to the PaymentMethod’s ID. |
| 44 | * |
| 45 | * @param string $id |
| 46 | * @param null|array $params |
| 47 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 48 | * |
| 49 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 50 | * |
| 51 | * @return \Stripe\PaymentMethod |
| 52 | */ |
| 53 | public function attach($id, $params = null, $opts = null) |
| 54 | { |
| 55 | return $this->request('post', $this->buildPath('/v1/payment_methods/%s/attach', $id), $params, $opts); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Creates a PaymentMethod object. Read the <a |
| 60 | * href="/docs/stripe-js/reference#stripe-create-payment-method">Stripe.js |
| 61 | * reference</a> to learn how to create PaymentMethods via Stripe.js. |
| 62 | * |
| 63 | * Instead of creating a PaymentMethod directly, we recommend using the <a |
| 64 | * href="/docs/payments/accept-a-payment">PaymentIntents</a> API to accept a |
| 65 | * payment immediately or the <a |
| 66 | * href="/docs/payments/save-and-reuse">SetupIntent</a> API to collect payment |
| 67 | * method details ahead of a future payment. |
| 68 | * |
| 69 | * @param null|array $params |
| 70 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 71 | * |
| 72 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 73 | * |
| 74 | * @return \Stripe\PaymentMethod |
| 75 | */ |
| 76 | public function create($params = null, $opts = null) |
| 77 | { |
| 78 | return $this->request('post', '/v1/payment_methods', $params, $opts); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Detaches a PaymentMethod object from a Customer. After a PaymentMethod is |
| 83 | * detached, it can no longer be used for a payment or re-attached to a Customer. |
| 84 | * |
| 85 | * @param string $id |
| 86 | * @param null|array $params |
| 87 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 88 | * |
| 89 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 90 | * |
| 91 | * @return \Stripe\PaymentMethod |
| 92 | */ |
| 93 | public function detach($id, $params = null, $opts = null) |
| 94 | { |
| 95 | return $this->request('post', $this->buildPath('/v1/payment_methods/%s/detach', $id), $params, $opts); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Retrieves a PaymentMethod object. |
| 100 | * |
| 101 | * @param string $id |
| 102 | * @param null|array $params |
| 103 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 104 | * |
| 105 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 106 | * |
| 107 | * @return \Stripe\PaymentMethod |
| 108 | */ |
| 109 | public function retrieve($id, $params = null, $opts = null) |
| 110 | { |
| 111 | return $this->request('get', $this->buildPath('/v1/payment_methods/%s', $id), $params, $opts); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Updates a PaymentMethod object. A PaymentMethod must be attached a customer to |
| 116 | * be updated. |
| 117 | * |
| 118 | * @param string $id |
| 119 | * @param null|array $params |
| 120 | * @param null|array|\Stripe\Util\RequestOptions $opts |
| 121 | * |
| 122 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 123 | * |
| 124 | * @return \Stripe\PaymentMethod |
| 125 | */ |
| 126 | public function update($id, $params = null, $opts = null) |
| 127 | { |
| 128 | return $this->request('post', $this->buildPath('/v1/payment_methods/%s', $id), $params, $opts); |
| 129 | } |
| 130 | } |
| 131 |