One Hat Cyber Team
Your IP:
216.73.216.104
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
self
/
root
/
home
/
fluxyjvi
/
www
/
assets
/
images
/
Edit File:
Service.tar
PaymentMethodConfigurationService.php 0000644 00000004121 15107340724 0014105 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PaymentMethodConfigurationService extends \Stripe\Service\AbstractService { /** * List payment method configurations. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentMethodConfiguration> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payment_method_configurations', $params, $opts); } /** * Creates a payment method configuration. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodConfiguration */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payment_method_configurations', $params, $opts); } /** * Retrieve payment method configuration. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodConfiguration */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payment_method_configurations/%s', $id), $params, $opts); } /** * Update payment method configuration. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodConfiguration */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_method_configurations/%s', $id), $params, $opts); } } Treasury/DebitReversalService.php 0000644 00000003077 15107340724 0013161 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class DebitReversalService extends \Stripe\Service\AbstractService { /** * Returns a list of DebitReversals. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\DebitReversal> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/debit_reversals', $params, $opts); } /** * Reverses a ReceivedDebit and creates a DebitReversal object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\DebitReversal */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/debit_reversals', $params, $opts); } /** * Retrieves a DebitReversal object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\DebitReversal */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/debit_reversals/%s', $id), $params, $opts); } } Treasury/OutboundPaymentService.php 0000644 00000004344 15107340725 0013562 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class OutboundPaymentService extends \Stripe\Service\AbstractService { /** * Returns a list of OutboundPayments sent from the specified FinancialAccount. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\OutboundPayment> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/outbound_payments', $params, $opts); } /** * Cancel an OutboundPayment. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/treasury/outbound_payments/%s/cancel', $id), $params, $opts); } /** * Creates an OutboundPayment. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/outbound_payments', $params, $opts); } /** * Retrieves the details of an existing OutboundPayment by passing the unique * OutboundPayment ID from either the OutboundPayment creation request or * OutboundPayment list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/outbound_payments/%s', $id), $params, $opts); } } Treasury/CreditReversalService.php 0000644 00000003331 15107340725 0013336 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class CreditReversalService extends \Stripe\Service\AbstractService { /** * Returns a list of CreditReversals. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\CreditReversal> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/credit_reversals', $params, $opts); } /** * Reverses a ReceivedCredit and creates a CreditReversal object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\CreditReversal */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/credit_reversals', $params, $opts); } /** * Retrieves the details of an existing CreditReversal by passing the unique * CreditReversal ID from either the CreditReversal creation request or * CreditReversal list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\CreditReversal */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/credit_reversals/%s', $id), $params, $opts); } } Treasury/FinancialAccountService.php 0000644 00000006367 15107340725 0013635 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class FinancialAccountService extends \Stripe\Service\AbstractService { /** * Returns a list of FinancialAccounts. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\FinancialAccount> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/financial_accounts', $params, $opts); } /** * Creates a new FinancialAccount. For now, each connected account can only have * one FinancialAccount. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\FinancialAccount */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/financial_accounts', $params, $opts); } /** * Retrieves the details of a FinancialAccount. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\FinancialAccount */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/financial_accounts/%s', $id), $params, $opts); } /** * Retrieves Features information associated with the FinancialAccount. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\FinancialAccountFeatures */ public function retrieveFeatures($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/financial_accounts/%s/features', $id), $params, $opts); } /** * Updates the details of a FinancialAccount. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\FinancialAccount */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/treasury/financial_accounts/%s', $id), $params, $opts); } /** * Updates the Features associated with a FinancialAccount. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\FinancialAccountFeatures */ public function updateFeatures($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/treasury/financial_accounts/%s/features', $id), $params, $opts); } } Treasury/InboundTransferService.php 0000644 00000004145 15107340726 0013530 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class InboundTransferService extends \Stripe\Service\AbstractService { /** * Returns a list of InboundTransfers sent from the specified FinancialAccount. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\InboundTransfer> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/inbound_transfers', $params, $opts); } /** * Cancels an InboundTransfer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/treasury/inbound_transfers/%s/cancel', $id), $params, $opts); } /** * Creates an InboundTransfer. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/inbound_transfers', $params, $opts); } /** * Retrieves the details of an existing InboundTransfer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/inbound_transfers/%s', $id), $params, $opts); } } Treasury/OutboundTransferService.php 0000644 00000004445 15107340726 0013734 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class OutboundTransferService extends \Stripe\Service\AbstractService { /** * Returns a list of OutboundTransfers sent from the specified FinancialAccount. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\OutboundTransfer> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/outbound_transfers', $params, $opts); } /** * An OutboundTransfer can be canceled if the funds have not yet been paid out. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/treasury/outbound_transfers/%s/cancel', $id), $params, $opts); } /** * Creates an OutboundTransfer. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/treasury/outbound_transfers', $params, $opts); } /** * Retrieves the details of an existing OutboundTransfer by passing the unique * OutboundTransfer ID from either the OutboundTransfer creation request or * OutboundTransfer list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/outbound_transfers/%s', $id), $params, $opts); } } Treasury/TreasuryServiceFactory.php 0000644 00000003110 15107340727 0013563 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; /** * Service factory class for API resources in the Treasury namespace. * * @property CreditReversalService $creditReversals * @property DebitReversalService $debitReversals * @property FinancialAccountService $financialAccounts * @property InboundTransferService $inboundTransfers * @property OutboundPaymentService $outboundPayments * @property OutboundTransferService $outboundTransfers * @property ReceivedCreditService $receivedCredits * @property ReceivedDebitService $receivedDebits * @property TransactionEntryService $transactionEntries * @property TransactionService $transactions */ class TreasuryServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'creditReversals' => CreditReversalService::class, 'debitReversals' => DebitReversalService::class, 'financialAccounts' => FinancialAccountService::class, 'inboundTransfers' => InboundTransferService::class, 'outboundPayments' => OutboundPaymentService::class, 'outboundTransfers' => OutboundTransferService::class, 'receivedCredits' => ReceivedCreditService::class, 'receivedDebits' => ReceivedDebitService::class, 'transactionEntries' => TransactionEntryService::class, 'transactions' => TransactionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Treasury/ReceivedDebitService.php 0000644 00000002303 15107340727 0013116 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class ReceivedDebitService extends \Stripe\Service\AbstractService { /** * Returns a list of ReceivedDebits. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\ReceivedDebit> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/received_debits', $params, $opts); } /** * Retrieves the details of an existing ReceivedDebit by passing the unique * ReceivedDebit ID from the ReceivedDebit list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\ReceivedDebit */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/received_debits/%s', $id), $params, $opts); } } Treasury/TransactionEntryService.php 0000644 00000002207 15107340730 0013724 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class TransactionEntryService extends \Stripe\Service\AbstractService { /** * Retrieves a list of TransactionEntry objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\TransactionEntry> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/transaction_entries', $params, $opts); } /** * Retrieves a TransactionEntry object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\TransactionEntry */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/transaction_entries/%s', $id), $params, $opts); } } Treasury/TransactionService.php 0000644 00000002162 15107340730 0012702 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class TransactionService extends \Stripe\Service\AbstractService { /** * Retrieves a list of Transaction objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\Transaction> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/transactions', $params, $opts); } /** * Retrieves the details of an existing Transaction. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\Transaction */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/transactions/%s', $id), $params, $opts); } } Treasury/ReceivedCreditService.php 0000644 00000002314 15107340730 0013275 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Treasury; class ReceivedCreditService extends \Stripe\Service\AbstractService { /** * Returns a list of ReceivedCredits. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Treasury\ReceivedCredit> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/treasury/received_credits', $params, $opts); } /** * Retrieves the details of an existing ReceivedCredit by passing the unique * ReceivedCredit ID from the ReceivedCredit list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\ReceivedCredit */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/treasury/received_credits/%s', $id), $params, $opts); } } BillingPortal/BillingPortalServiceFactory.php 0000644 00000001261 15107340731 0015433 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\BillingPortal; /** * Service factory class for API resources in the BillingPortal namespace. * * @property ConfigurationService $configurations * @property SessionService $sessions */ class BillingPortalServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'configurations' => ConfigurationService::class, 'sessions' => SessionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } BillingPortal/ConfigurationService.php 0000644 00000004452 15107340731 0014155 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\BillingPortal; class ConfigurationService extends \Stripe\Service\AbstractService { /** * Returns a list of configurations that describe the functionality of the customer * portal. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\BillingPortal\Configuration> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/billing_portal/configurations', $params, $opts); } /** * Creates a configuration that describes the functionality and behavior of a * PortalSession. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BillingPortal\Configuration */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/billing_portal/configurations', $params, $opts); } /** * Retrieves a configuration that describes the functionality of the customer * portal. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BillingPortal\Configuration */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/billing_portal/configurations/%s', $id), $params, $opts); } /** * Updates a configuration that describes the functionality of the customer portal. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BillingPortal\Configuration */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/billing_portal/configurations/%s', $id), $params, $opts); } } BillingPortal/SessionService.php 0000644 00000001134 15107340731 0012763 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\BillingPortal; class SessionService extends \Stripe\Service\AbstractService { /** * Creates a session of the customer portal. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BillingPortal\Session */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/billing_portal/sessions', $params, $opts); } } Radar/EarlyFraudWarningService.php 0000644 00000002465 15107340731 0013223 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Radar; class EarlyFraudWarningService extends \Stripe\Service\AbstractService { /** * Returns a list of early fraud warnings. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Radar\EarlyFraudWarning> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/radar/early_fraud_warnings', $params, $opts); } /** * Retrieves the details of an early fraud warning that has previously been * created. * * Please refer to the <a href="#early_fraud_warning_object">early fraud * warning</a> object reference for more details. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\EarlyFraudWarning */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/radar/early_fraud_warnings/%s', $id), $params, $opts); } } Radar/ValueListItemService.php 0000644 00000004452 15107340732 0012365 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Radar; class ValueListItemService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>ValueListItem</code> objects. The objects are sorted in * descending order by creation date, with the most recently created object * appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Radar\ValueListItem> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/radar/value_list_items', $params, $opts); } /** * Creates a new <code>ValueListItem</code> object, which is added to the specified * parent value list. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueListItem */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/radar/value_list_items', $params, $opts); } /** * Deletes a <code>ValueListItem</code> object, removing it from its parent value * list. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueListItem */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/radar/value_list_items/%s', $id), $params, $opts); } /** * Retrieves a <code>ValueListItem</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueListItem */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/radar/value_list_items/%s', $id), $params, $opts); } } Radar/RadarServiceFactory.php 0000644 00000001434 15107340732 0012214 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Radar; /** * Service factory class for API resources in the Radar namespace. * * @property EarlyFraudWarningService $earlyFraudWarnings * @property ValueListItemService $valueListItems * @property ValueListService $valueLists */ class RadarServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'earlyFraudWarnings' => EarlyFraudWarningService::class, 'valueListItems' => ValueListItemService::class, 'valueLists' => ValueListService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Radar/ValueListService.php 0000644 00000005715 15107340732 0011551 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Radar; class ValueListService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>ValueList</code> objects. The objects are sorted in * descending order by creation date, with the most recently created object * appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Radar\ValueList> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/radar/value_lists', $params, $opts); } /** * Creates a new <code>ValueList</code> object, which can then be referenced in * rules. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueList */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/radar/value_lists', $params, $opts); } /** * Deletes a <code>ValueList</code> object, also deleting any items contained * within the value list. To be deleted, a value list must not be referenced in any * rules. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueList */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/radar/value_lists/%s', $id), $params, $opts); } /** * Retrieves a <code>ValueList</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueList */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/radar/value_lists/%s', $id), $params, $opts); } /** * Updates a <code>ValueList</code> object by setting the values of the parameters * passed. Any parameters not provided will be left unchanged. Note that * <code>item_type</code> is immutable. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Radar\ValueList */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/radar/value_lists/%s', $id), $params, $opts); } } PaymentLinkService.php 0000644 00000005167 15107340732 0011044 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PaymentLinkService extends \Stripe\Service\AbstractService { /** * Returns a list of your payment links. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentLink> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payment_links', $params, $opts); } /** * When retrieving a payment link, there is an includable * <strong>line_items</strong> property containing the first handful of those * items. There is also a URL where you can retrieve the full (paginated) list of * line items. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\LineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/payment_links/%s/line_items', $id), $params, $opts); } /** * Creates a payment link. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentLink */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payment_links', $params, $opts); } /** * Retrieve a payment link. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentLink */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payment_links/%s', $id), $params, $opts); } /** * Updates a payment link. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentLink */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_links/%s', $id), $params, $opts); } } Issuing/AuthorizationService.php 0000644 00000007323 15107340733 0013067 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class AuthorizationService extends \Stripe\Service\AbstractService { /** * Returns a list of Issuing <code>Authorization</code> objects. The objects are * sorted in descending order by creation date, with the most recently created * object appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Authorization> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/authorizations', $params, $opts); } /** * [Deprecated] Approves a pending Issuing <code>Authorization</code> object. This * request should be made within the timeout window of the <a * href="/docs/issuing/controls/real-time-authorizations">real-time * authorization</a> flow. This method is deprecated. Instead, <a * href="/docs/issuing/controls/real-time-authorizations#authorization-handling">respond * directly to the webhook request to approve an authorization</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function approve($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/authorizations/%s/approve', $id), $params, $opts); } /** * [Deprecated] Declines a pending Issuing <code>Authorization</code> object. This * request should be made within the timeout window of the <a * href="/docs/issuing/controls/real-time-authorizations">real time * authorization</a> flow. This method is deprecated. Instead, <a * href="/docs/issuing/controls/real-time-authorizations#authorization-handling">respond * directly to the webhook request to decline an authorization</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function decline($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/authorizations/%s/decline', $id), $params, $opts); } /** * Retrieves an Issuing <code>Authorization</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/authorizations/%s', $id), $params, $opts); } /** * Updates the specified Issuing <code>Authorization</code> object by setting the * values of the parameters passed. Any parameters not provided will be left * unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/authorizations/%s', $id), $params, $opts); } } Issuing/TokenService.php 0000644 00000003206 15107340733 0011303 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class TokenService extends \Stripe\Service\AbstractService { /** * Lists all Issuing <code>Token</code> objects for a given card. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Token> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/tokens', $params, $opts); } /** * Retrieves an Issuing <code>Token</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Token */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/tokens/%s', $id), $params, $opts); } /** * Attempts to update the specified Issuing <code>Token</code> object to the status * specified. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Token */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/tokens/%s', $id), $params, $opts); } } Issuing/IssuingServiceFactory.php 0000644 00000001763 15107340733 0013202 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; /** * Service factory class for API resources in the Issuing namespace. * * @property AuthorizationService $authorizations * @property CardholderService $cardholders * @property CardService $cards * @property DisputeService $disputes * @property TokenService $tokens * @property TransactionService $transactions */ class IssuingServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'authorizations' => AuthorizationService::class, 'cardholders' => CardholderService::class, 'cards' => CardService::class, 'disputes' => DisputeService::class, 'tokens' => TokenService::class, 'transactions' => TransactionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Issuing/CardService.php 0000644 00000004350 15107340733 0011075 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class CardService extends \Stripe\Service\AbstractService { /** * Returns a list of Issuing <code>Card</code> objects. The objects are sorted in * descending order by creation date, with the most recently created object * appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Card> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/cards', $params, $opts); } /** * Creates an Issuing <code>Card</code> object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/issuing/cards', $params, $opts); } /** * Retrieves an Issuing <code>Card</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/cards/%s', $id), $params, $opts); } /** * Updates the specified Issuing <code>Card</code> object by setting the values of * the parameters passed. Any parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/cards/%s', $id), $params, $opts); } } Issuing/CardholderService.php 0000644 00000004531 15107340733 0012274 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class CardholderService extends \Stripe\Service\AbstractService { /** * Returns a list of Issuing <code>Cardholder</code> objects. The objects are * sorted in descending order by creation date, with the most recently created * object appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Cardholder> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/cardholders', $params, $opts); } /** * Creates a new Issuing <code>Cardholder</code> object that can be issued cards. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Cardholder */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/issuing/cardholders', $params, $opts); } /** * Retrieves an Issuing <code>Cardholder</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Cardholder */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/cardholders/%s', $id), $params, $opts); } /** * Updates the specified Issuing <code>Cardholder</code> object by setting the * values of the parameters passed. Any parameters not provided will be left * unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Cardholder */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/cardholders/%s', $id), $params, $opts); } } Issuing/TransactionService.php 0000644 00000003602 15107340734 0012511 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class TransactionService extends \Stripe\Service\AbstractService { /** * Returns a list of Issuing <code>Transaction</code> objects. The objects are * sorted in descending order by creation date, with the most recently created * object appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Transaction> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/transactions', $params, $opts); } /** * Retrieves an Issuing <code>Transaction</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Transaction */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/transactions/%s', $id), $params, $opts); } /** * Updates the specified Issuing <code>Transaction</code> object by setting the * values of the parameters passed. Any parameters not provided will be left * unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Transaction */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/transactions/%s', $id), $params, $opts); } } Issuing/DisputeService.php 0000644 00000006740 15107340734 0011647 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Issuing; class DisputeService extends \Stripe\Service\AbstractService { /** * Returns a list of Issuing <code>Dispute</code> objects. The objects are sorted * in descending order by creation date, with the most recently created object * appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Issuing\Dispute> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/issuing/disputes', $params, $opts); } /** * Creates an Issuing <code>Dispute</code> object. Individual pieces of evidence * within the <code>evidence</code> object are optional at this point. Stripe only * validates that required evidence is present during submission. Refer to <a * href="/docs/issuing/purchases/disputes#dispute-reasons-and-evidence">Dispute * reasons and evidence</a> for more details about evidence requirements. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Dispute */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/issuing/disputes', $params, $opts); } /** * Retrieves an Issuing <code>Dispute</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Dispute */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/issuing/disputes/%s', $id), $params, $opts); } /** * Submits an Issuing <code>Dispute</code> to the card network. Stripe validates * that all evidence fields required for the dispute’s reason are present. For more * details, see <a * href="/docs/issuing/purchases/disputes#dispute-reasons-and-evidence">Dispute * reasons and evidence</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Dispute */ public function submit($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/disputes/%s/submit', $id), $params, $opts); } /** * Updates the specified Issuing <code>Dispute</code> object by setting the values * of the parameters passed. Any parameters not provided will be left unchanged. * Properties on the <code>evidence</code> object can be unset by passing in an * empty string. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Dispute */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/issuing/disputes/%s', $id), $params, $opts); } } TopupService.php 0000644 00000005123 15107340734 0007712 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class TopupService extends \Stripe\Service\AbstractService { /** * Returns a list of top-ups. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Topup> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/topups', $params, $opts); } /** * Cancels a top-up. Only pending top-ups can be canceled. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Topup */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/topups/%s/cancel', $id), $params, $opts); } /** * Top up the balance of an account. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Topup */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/topups', $params, $opts); } /** * Retrieves the details of a top-up that has previously been created. Supply the * unique top-up ID that was returned from your previous request, and Stripe will * return the corresponding top-up information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Topup */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/topups/%s', $id), $params, $opts); } /** * Updates the metadata of a top-up. Other top-up details are not editable by * design. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Topup */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/topups/%s', $id), $params, $opts); } } Terminal/TerminalServiceFactory.php 0000644 00000001550 15107340734 0013461 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Terminal; /** * Service factory class for API resources in the Terminal namespace. * * @property ConfigurationService $configurations * @property ConnectionTokenService $connectionTokens * @property LocationService $locations * @property ReaderService $readers */ class TerminalServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'configurations' => ConfigurationService::class, 'connectionTokens' => ConnectionTokenService::class, 'locations' => LocationService::class, 'readers' => ReaderService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Terminal/ConnectionTokenService.php 0000644 00000001441 15107340735 0013456 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Terminal; class ConnectionTokenService extends \Stripe\Service\AbstractService { /** * To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived * connection token from Stripe, proxied through your server. On your backend, add * an endpoint that creates and returns a connection token. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\ConnectionToken */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/terminal/connection_tokens', $params, $opts); } } Terminal/ReaderService.php 0000644 00000012152 15107340735 0011561 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Terminal; class ReaderService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>Reader</code> objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Terminal\Reader> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/terminal/readers', $params, $opts); } /** * Cancels the current reader action. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function cancelAction($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s/cancel_action', $id), $params, $opts); } /** * Creates a new <code>Reader</code> object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/terminal/readers', $params, $opts); } /** * Deletes a <code>Reader</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/terminal/readers/%s', $id), $params, $opts); } /** * Initiates a payment flow on a Reader. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function processPaymentIntent($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s/process_payment_intent', $id), $params, $opts); } /** * Initiates a setup intent flow on a Reader. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function processSetupIntent($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s/process_setup_intent', $id), $params, $opts); } /** * Initiates a refund on a Reader. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function refundPayment($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s/refund_payment', $id), $params, $opts); } /** * Retrieves a <code>Reader</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/terminal/readers/%s', $id), $params, $opts); } /** * Sets reader display to show cart details. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function setReaderDisplay($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s/set_reader_display', $id), $params, $opts); } /** * Updates a <code>Reader</code> object by setting the values of the parameters * passed. Any parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/readers/%s', $id), $params, $opts); } } Terminal/ConfigurationService.php 0000644 00000005125 15107340735 0013170 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Terminal; class ConfigurationService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>Configuration</code> objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Terminal\Configuration> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/terminal/configurations', $params, $opts); } /** * Creates a new <code>Configuration</code> object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Configuration */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/terminal/configurations', $params, $opts); } /** * Deletes a <code>Configuration</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Configuration */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/terminal/configurations/%s', $id), $params, $opts); } /** * Retrieves a <code>Configuration</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Configuration */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/terminal/configurations/%s', $id), $params, $opts); } /** * Updates a new <code>Configuration</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Configuration */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/configurations/%s', $id), $params, $opts); } } Terminal/LocationService.php 0000644 00000005430 15107340735 0012130 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Terminal; class LocationService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>Location</code> objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Terminal\Location> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/terminal/locations', $params, $opts); } /** * Creates a new <code>Location</code> object. For further details, including which * address fields are required in each country, see the <a * href="/docs/terminal/fleet/locations">Manage locations</a> guide. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Location */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/terminal/locations', $params, $opts); } /** * Deletes a <code>Location</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Location */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/terminal/locations/%s', $id), $params, $opts); } /** * Retrieves a <code>Location</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Location */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/terminal/locations/%s', $id), $params, $opts); } /** * Updates a <code>Location</code> object by setting the values of the parameters * passed. Any parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Location */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/terminal/locations/%s', $id), $params, $opts); } } CouponService.php 0000644 00000007154 15107340735 0010055 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class CouponService extends \Stripe\Service\AbstractService { /** * Returns a list of your coupons. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Coupon> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/coupons', $params, $opts); } /** * You can create coupons easily via the <a * href="https://dashboard.stripe.com/coupons">coupon management</a> page of the * Stripe dashboard. Coupon creation is also accessible via the API if you need to * create coupons on the fly. * * A coupon has either a <code>percent_off</code> or an <code>amount_off</code> and * <code>currency</code>. If you set an <code>amount_off</code>, that amount will * be subtracted from any invoice’s subtotal. For example, an invoice with a * subtotal of <currency>100</currency> will have a final total of * <currency>0</currency> if a coupon with an <code>amount_off</code> of * <amount>200</amount> is applied to it and an invoice with a subtotal of * <currency>300</currency> will have a final total of <currency>100</currency> if * a coupon with an <code>amount_off</code> of <amount>200</amount> is applied to * it. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Coupon */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/coupons', $params, $opts); } /** * You can delete coupons via the <a * href="https://dashboard.stripe.com/coupons">coupon management</a> page of the * Stripe dashboard. However, deleting a coupon does not affect any customers who * have already applied the coupon; it means that new customers can’t redeem the * coupon. You can also delete coupons via the API. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Coupon */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/coupons/%s', $id), $params, $opts); } /** * Retrieves the coupon with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Coupon */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/coupons/%s', $id), $params, $opts); } /** * Updates the metadata of a coupon. Other coupon details (currency, duration, * amount_off) are, by design, not editable. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Coupon */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/coupons/%s', $id), $params, $opts); } } FileLinkService.php 0000644 00000003712 15107340736 0010304 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class FileLinkService extends \Stripe\Service\AbstractService { /** * Returns a list of file links. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\FileLink> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/file_links', $params, $opts); } /** * Creates a new file link object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FileLink */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/file_links', $params, $opts); } /** * Retrieves the file link with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FileLink */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/file_links/%s', $id), $params, $opts); } /** * Updates an existing file link object. Expired links can no longer be updated. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FileLink */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/file_links/%s', $id), $params, $opts); } } Reporting/ReportRunService.php 0000644 00000003311 15107340736 0012513 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Reporting; class ReportRunService extends \Stripe\Service\AbstractService { /** * Returns a list of Report Runs, with the most recent appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Reporting\ReportRun> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/reporting/report_runs', $params, $opts); } /** * Creates a new object and begin running the report. (Certain report types require * a <a href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.). * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Reporting\ReportRun */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/reporting/report_runs', $params, $opts); } /** * Retrieves the details of an existing Report Run. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Reporting\ReportRun */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/reporting/report_runs/%s', $id), $params, $opts); } } Reporting/ReportingServiceFactory.php 0000644 00000001241 15107340736 0014054 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Reporting; /** * Service factory class for API resources in the Reporting namespace. * * @property ReportRunService $reportRuns * @property ReportTypeService $reportTypes */ class ReportingServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'reportRuns' => ReportRunService::class, 'reportTypes' => ReportTypeService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Reporting/ReportTypeService.php 0000644 00000002335 15107340737 0012676 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Reporting; class ReportTypeService extends \Stripe\Service\AbstractService { /** * Returns a full list of Report Types. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Reporting\ReportType> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/reporting/report_types', $params, $opts); } /** * Retrieves the details of a Report Type. (Certain report types require a <a * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.). * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Reporting\ReportType */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/reporting/report_types/%s', $id), $params, $opts); } } Sigma/SigmaServiceFactory.php 0000644 00000001126 15107340737 0012235 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Sigma; /** * Service factory class for API resources in the Sigma namespace. * * @property ScheduledQueryRunService $scheduledQueryRuns */ class SigmaServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'scheduledQueryRuns' => ScheduledQueryRunService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Sigma/ScheduledQueryRunService.php 0000644 00000002203 15107340737 0013255 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Sigma; class ScheduledQueryRunService extends \Stripe\Service\AbstractService { /** * Returns a list of scheduled query runs. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Sigma\ScheduledQueryRun> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/sigma/scheduled_query_runs', $params, $opts); } /** * Retrieves the details of an scheduled query run. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Sigma\ScheduledQueryRun */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/sigma/scheduled_query_runs/%s', $id), $params, $opts); } } SetupIntentService.php 0000644 00000011744 15107340737 0011076 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SetupIntentService extends \Stripe\Service\AbstractService { /** * Returns a list of SetupIntents. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\SetupIntent> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/setup_intents', $params, $opts); } /** * You can cancel a SetupIntent object when it’s in one of these statuses: * <code>requires_payment_method</code>, <code>requires_confirmation</code>, or * <code>requires_action</code>. * * After you cancel it, setup is abandoned and any operations on the SetupIntent * fail with an error. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/setup_intents/%s/cancel', $id), $params, $opts); } /** * Confirm that your customer intends to set up the current or provided payment * method. For example, you would confirm a SetupIntent when a customer hits the * “Save” button on a payment method management page on your website. * * If the selected payment method does not require any additional steps from the * customer, the SetupIntent will transition to the <code>succeeded</code> status. * * Otherwise, it will transition to the <code>requires_action</code> status and * suggest additional actions via <code>next_action</code>. If setup fails, the * SetupIntent will transition to the <code>requires_payment_method</code> status * or the <code>canceled</code> status if the confirmation limit is reached. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function confirm($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/setup_intents/%s/confirm', $id), $params, $opts); } /** * Creates a SetupIntent object. * * After you create the SetupIntent, attach a payment method and <a * href="/docs/api/setup_intents/confirm">confirm</a> it to collect any required * permissions to charge the payment method later. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/setup_intents', $params, $opts); } /** * Retrieves the details of a SetupIntent that has previously been created. * * Client-side retrieval using a publishable key is allowed when the * <code>client_secret</code> is provided in the query string. * * When retrieved with a publishable key, only a subset of properties will be * returned. Please refer to the <a href="#setup_intent_object">SetupIntent</a> * object reference for more details. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/setup_intents/%s', $id), $params, $opts); } /** * Updates a SetupIntent object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/setup_intents/%s', $id), $params, $opts); } /** * Verifies microdeposits on a SetupIntent object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SetupIntent */ public function verifyMicrodeposits($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/setup_intents/%s/verify_microdeposits', $id), $params, $opts); } } SetupAttemptService.php 0000644 00000001175 15107340740 0011242 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SetupAttemptService extends \Stripe\Service\AbstractService { /** * Returns a list of SetupAttempts that associate with a provided SetupIntent. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\SetupAttempt> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/setup_attempts', $params, $opts); } } CountrySpecService.php 0000644 00000002122 15107340740 0011052 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class CountrySpecService extends \Stripe\Service\AbstractService { /** * Lists all Country Spec objects available in the API. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CountrySpec> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/country_specs', $params, $opts); } /** * Returns a Country Spec for a given Country code. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CountrySpec */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/country_specs/%s', $id), $params, $opts); } } Tax/RegistrationService.php 0000644 00000003334 15107340740 0012010 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Tax; class RegistrationService extends \Stripe\Service\AbstractService { /** * Returns a list of Tax <code>Registration</code> objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Tax\Registration> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/tax/registrations', $params, $opts); } /** * Creates a new Tax <code>Registration</code> object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Registration */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/tax/registrations', $params, $opts); } /** * Updates an existing Tax <code>Registration</code> object. * * A registration cannot be deleted after it has been created. If you wish to end a * registration you may do so by setting <code>expires_at</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Registration */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/tax/registrations/%s', $id), $params, $opts); } } Tax/CalculationService.php 0000644 00000002263 15107340740 0011574 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Tax; class CalculationService extends \Stripe\Service\AbstractService { /** * Retrieves the line items of a persisted tax calculation as a collection. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Tax\CalculationLineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/tax/calculations/%s/line_items', $id), $params, $opts); } /** * Calculates tax based on input and returns a Tax <code>Calculation</code> object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Calculation */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/tax/calculations', $params, $opts); } } Tax/SettingsService.php 0000644 00000002133 15107340741 0011133 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Tax; class SettingsService extends \Stripe\Service\AbstractService { /** * Retrieves Tax <code>Settings</code> for a merchant. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Settings */ public function retrieve($params = null, $opts = null) { return $this->request('get', '/v1/tax/settings', $params, $opts); } /** * Updates Tax <code>Settings</code> parameters used in tax calculations. All * parameters are editable but none can be removed once set. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Settings */ public function update($params = null, $opts = null) { return $this->request('post', '/v1/tax/settings', $params, $opts); } } Tax/TaxServiceFactory.php 0000644 00000001527 15107340741 0011425 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Tax; /** * Service factory class for API resources in the Tax namespace. * * @property CalculationService $calculations * @property RegistrationService $registrations * @property SettingsService $settings * @property TransactionService $transactions */ class TaxServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'calculations' => CalculationService::class, 'registrations' => RegistrationService::class, 'settings' => SettingsService::class, 'transactions' => TransactionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Tax/TransactionService.php 0000644 00000004260 15107340741 0011623 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Tax; class TransactionService extends \Stripe\Service\AbstractService { /** * Retrieves the line items of a committed standalone transaction as a collection. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Tax\TransactionLineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/tax/transactions/%s/line_items', $id), $params, $opts); } /** * Creates a Tax <code>Transaction</code> from a calculation. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Transaction */ public function createFromCalculation($params = null, $opts = null) { return $this->request('post', '/v1/tax/transactions/create_from_calculation', $params, $opts); } /** * Partially or fully reverses a previously created <code>Transaction</code>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Transaction */ public function createReversal($params = null, $opts = null) { return $this->request('post', '/v1/tax/transactions/create_reversal', $params, $opts); } /** * Retrieves a Tax <code>Transaction</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Tax\Transaction */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/tax/transactions/%s', $id), $params, $opts); } } BalanceService.php 0000644 00000001415 15107340742 0010127 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class BalanceService extends \Stripe\Service\AbstractService { /** * Retrieves the current account balance, based on the authentication that was used * to make the request. For a sample request, see <a * href="/docs/connect/account-balances#accounting-for-negative-balances">Accounting * for negative balances</a>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Balance */ public function retrieve($params = null, $opts = null) { return $this->request('get', '/v1/balance', $params, $opts); } } TokenService.php 0000644 00000002352 15107340743 0007664 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class TokenService extends \Stripe\Service\AbstractService { /** * Creates a single-use token that represents a bank account’s details. You can use * this token with any API method in place of a bank account dictionary. You can * only use this token once. To do so, attach it to a <a href="#accounts">Custom * account</a>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Token */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/tokens', $params, $opts); } /** * Retrieves the token with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Token */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/tokens/%s', $id), $params, $opts); } } Apps/SecretService.php 0000644 00000003623 15107340744 0010737 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Apps; class SecretService extends \Stripe\Service\AbstractService { /** * List all secrets stored on the given scope. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Apps\Secret> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/apps/secrets', $params, $opts); } /** * Create or replace a secret in the secret store. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Apps\Secret */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/apps/secrets', $params, $opts); } /** * Deletes a secret from the secret store by name and scope. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Apps\Secret */ public function deleteWhere($params = null, $opts = null) { return $this->request('post', '/v1/apps/secrets/delete', $params, $opts); } /** * Finds a secret in the secret store by name and scope. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Apps\Secret */ public function find($params = null, $opts = null) { return $this->request('get', '/v1/apps/secrets/find', $params, $opts); } } Apps/AppsServiceFactory.php 0000644 00000001047 15107340744 0011743 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Apps; /** * Service factory class for API resources in the Apps namespace. * * @property SecretService $secrets */ class AppsServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'secrets' => SecretService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } SubscriptionItemService.php 0000644 00000013364 15107340745 0012116 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SubscriptionItemService extends \Stripe\Service\AbstractService { /** * Returns a list of your subscription items for a given subscription. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\SubscriptionItem> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/subscription_items', $params, $opts); } /** * For the specified subscription item, returns a list of summary objects. Each * object in the list provides usage information that’s been summarized from * multiple usage records and over a subscription billing period (e.g., 15 usage * records in the month of September). * * The list is sorted in reverse-chronological order (newest first). The first list * item represents the most current usage period that hasn’t ended yet. Since new * usage records can still be added, the returned summary information for the * subscription item’s ID should be seen as unstable until the subscription billing * period ends. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\UsageRecordSummary> */ public function allUsageRecordSummaries($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/subscription_items/%s/usage_record_summaries', $parentId), $params, $opts); } /** * Adds a new item to an existing subscription. No existing items will be changed * or replaced. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionItem */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/subscription_items', $params, $opts); } /** * Creates a usage record for a specified subscription item and date, and fills it * with a quantity. * * Usage records provide <code>quantity</code> information that Stripe uses to * track how much a customer is using your service. With usage information and the * pricing model set up by the <a * href="https://stripe.com/docs/billing/subscriptions/metered-billing">metered * billing</a> plan, Stripe helps you send accurate invoices to your customers. * * The default calculation for usage is to add up all the <code>quantity</code> * values of the usage records within a billing period. You can change this default * behavior with the billing plan’s <code>aggregate_usage</code> <a * href="/docs/api/plans/create#create_plan-aggregate_usage">parameter</a>. When * there is more than one usage record with the same timestamp, Stripe adds the * <code>quantity</code> values together. In most cases, this is the desired * resolution, however, you can change this behavior with the <code>action</code> * parameter. * * The default pricing model for metered billing is <a * href="/docs/api/plans/object#plan_object-billing_scheme">per-unit pricing</a>. * For finer granularity, you can configure metered billing to have a <a * href="https://stripe.com/docs/billing/subscriptions/tiers">tiered pricing</a> * model. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\UsageRecord */ public function createUsageRecord($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscription_items/%s/usage_records', $parentId), $params, $opts); } /** * Deletes an item from the subscription. Removing a subscription item from a * subscription will not cancel the subscription. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionItem */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/subscription_items/%s', $id), $params, $opts); } /** * Retrieves the subscription item with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionItem */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/subscription_items/%s', $id), $params, $opts); } /** * Updates the plan or quantity of an item on a current subscription. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionItem */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscription_items/%s', $id), $params, $opts); } } TestHelpers/Treasury/OutboundPaymentService.php 0000644 00000004163 15107340745 0016025 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; class OutboundPaymentService extends \Stripe\Service\AbstractService { /** * Transitions a test mode created OutboundPayment to the <code>failed</code> * status. The OutboundPayment must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function fail($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/fail', $id), $params, $opts); } /** * Transitions a test mode created OutboundPayment to the <code>posted</code> * status. The OutboundPayment must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function post($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/post', $id), $params, $opts); } /** * Transitions a test mode created OutboundPayment to the <code>returned</code> * status. The OutboundPayment must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundPayment */ public function returnOutboundPayment($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/return', $id), $params, $opts); } } TestHelpers/Treasury/InboundTransferService.php 0000644 00000004217 15107340746 0015774 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; class InboundTransferService extends \Stripe\Service\AbstractService { /** * Transitions a test mode created InboundTransfer to the <code>failed</code> * status. The InboundTransfer must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function fail($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/inbound_transfers/%s/fail', $id), $params, $opts); } /** * Marks the test mode InboundTransfer object as returned and links the * InboundTransfer to a ReceivedDebit. The InboundTransfer must already be in the * <code>succeeded</code> state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function returnInboundTransfer($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/inbound_transfers/%s/return', $id), $params, $opts); } /** * Transitions a test mode created InboundTransfer to the <code>succeeded</code> * status. The InboundTransfer must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\InboundTransfer */ public function succeed($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/inbound_transfers/%s/succeed', $id), $params, $opts); } } TestHelpers/Treasury/OutboundTransferService.php 0000644 00000004201 15107340746 0016166 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; class OutboundTransferService extends \Stripe\Service\AbstractService { /** * Transitions a test mode created OutboundTransfer to the <code>failed</code> * status. The OutboundTransfer must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function fail($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/fail', $id), $params, $opts); } /** * Transitions a test mode created OutboundTransfer to the <code>posted</code> * status. The OutboundTransfer must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function post($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/post', $id), $params, $opts); } /** * Transitions a test mode created OutboundTransfer to the <code>returned</code> * status. The OutboundTransfer must already be in the <code>processing</code> * state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\OutboundTransfer */ public function returnOutboundTransfer($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/return', $id), $params, $opts); } } TestHelpers/Treasury/TreasuryServiceFactory.php 0000644 00000002047 15107340747 0016037 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; /** * Service factory class for API resources in the Treasury namespace. * * @property InboundTransferService $inboundTransfers * @property OutboundPaymentService $outboundPayments * @property OutboundTransferService $outboundTransfers * @property ReceivedCreditService $receivedCredits * @property ReceivedDebitService $receivedDebits */ class TreasuryServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'inboundTransfers' => InboundTransferService::class, 'outboundPayments' => OutboundPaymentService::class, 'outboundTransfers' => OutboundTransferService::class, 'receivedCredits' => ReceivedCreditService::class, 'receivedDebits' => ReceivedDebitService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } TestHelpers/Treasury/ReceivedDebitService.php 0000644 00000001405 15107340750 0015356 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; class ReceivedDebitService extends \Stripe\Service\AbstractService { /** * Use this endpoint to simulate a test mode ReceivedDebit initiated by a third * party. In live mode, you can’t directly create ReceivedDebits initiated by third * parties. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\ReceivedDebit */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/treasury/received_debits', $params, $opts); } } TestHelpers/Treasury/ReceivedCreditService.php 0000644 00000001412 15107340750 0015537 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Treasury; class ReceivedCreditService extends \Stripe\Service\AbstractService { /** * Use this endpoint to simulate a test mode ReceivedCredit initiated by a third * party. In live mode, you can’t directly create ReceivedCredits initiated by * third parties. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Treasury\ReceivedCredit */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/treasury/received_credits', $params, $opts); } } TestHelpers/Issuing/AuthorizationService.php 0000644 00000005223 15107340750 0015325 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Issuing; class AuthorizationService extends \Stripe\Service\AbstractService { /** * Capture a test-mode authorization. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function capture($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/authorizations/%s/capture', $id), $params, $opts); } /** * Create a test-mode authorization. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/issuing/authorizations', $params, $opts); } /** * Expire a test-mode Authorization. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function expire($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/authorizations/%s/expire', $id), $params, $opts); } /** * Increment a test-mode Authorization. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function increment($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/authorizations/%s/increment', $id), $params, $opts); } /** * Reverse a test-mode Authorization. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Authorization */ public function reverse($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/authorizations/%s/reverse', $id), $params, $opts); } } TestHelpers/Issuing/IssuingServiceFactory.php 0000644 00000001402 15107340751 0015432 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Issuing; /** * Service factory class for API resources in the Issuing namespace. * * @property AuthorizationService $authorizations * @property CardService $cards * @property TransactionService $transactions */ class IssuingServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'authorizations' => AuthorizationService::class, 'cards' => CardService::class, 'transactions' => TransactionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } TestHelpers/Issuing/CardService.php 0000644 00000004715 15107340751 0013344 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Issuing; class CardService extends \Stripe\Service\AbstractService { /** * Updates the shipping status of the specified Issuing <code>Card</code> object to * <code>delivered</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function deliverCard($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/cards/%s/shipping/deliver', $id), $params, $opts); } /** * Updates the shipping status of the specified Issuing <code>Card</code> object to * <code>failure</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function failCard($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/cards/%s/shipping/fail', $id), $params, $opts); } /** * Updates the shipping status of the specified Issuing <code>Card</code> object to * <code>returned</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function returnCard($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/cards/%s/shipping/return', $id), $params, $opts); } /** * Updates the shipping status of the specified Issuing <code>Card</code> object to * <code>shipped</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Card */ public function shipCard($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/cards/%s/shipping/ship', $id), $params, $opts); } } TestHelpers/Issuing/TransactionService.php 0000644 00000003313 15107340751 0014751 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Issuing; class TransactionService extends \Stripe\Service\AbstractService { /** * Allows the user to capture an arbitrary amount, also known as a forced capture. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Transaction */ public function createForceCapture($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/issuing/transactions/create_force_capture', $params, $opts); } /** * Allows the user to refund an arbitrary amount, also known as a unlinked refund. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Transaction */ public function createUnlinkedRefund($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/issuing/transactions/create_unlinked_refund', $params, $opts); } /** * Refund a test-mode Transaction. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Issuing\Transaction */ public function refund($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/issuing/transactions/%s/refund', $id), $params, $opts); } } TestHelpers/TestHelpersServiceFactory.php 0000644 00000002107 15107340752 0014636 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers; /** * Service factory class for API resources in the TestHelpers namespace. * * @property CustomerService $customers * @property Issuing\IssuingServiceFactory $issuing * @property RefundService $refunds * @property Terminal\TerminalServiceFactory $terminal * @property TestClockService $testClocks * @property Treasury\TreasuryServiceFactory $treasury */ class TestHelpersServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'customers' => CustomerService::class, 'issuing' => Issuing\IssuingServiceFactory::class, 'refunds' => RefundService::class, 'terminal' => Terminal\TerminalServiceFactory::class, 'testClocks' => TestClockService::class, 'treasury' => Treasury\TreasuryServiceFactory::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } TestHelpers/Terminal/TerminalServiceFactory.php 0000644 00000001077 15107340752 0015727 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Terminal; /** * Service factory class for API resources in the Terminal namespace. * * @property ReaderService $readers */ class TerminalServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'readers' => ReaderService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } TestHelpers/Terminal/ReaderService.php 0000644 00000001444 15107340752 0014024 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers\Terminal; class ReaderService extends \Stripe\Service\AbstractService { /** * Presents a payment method on a simulated reader. Can be used to simulate * accepting a payment, saving a card or refunding a transaction. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Terminal\Reader */ public function presentPaymentMethod($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/terminal/readers/%s/present_payment_method', $id), $params, $opts); } } TestHelpers/CustomerService.php 0000644 00000001267 15107340753 0012654 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers; class CustomerService extends \Stripe\Service\AbstractService { /** * Create an incoming testmode bank transfer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CustomerCashBalanceTransaction */ public function fundCashBalance($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/customers/%s/fund_cash_balance', $id), $params, $opts); } } TestHelpers/RefundService.php 0000644 00000001233 15107340753 0012267 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers; class RefundService extends \Stripe\Service\AbstractService { /** * Expire a refund with a status of <code>requires_action</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Refund */ public function expire($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/refunds/%s/expire', $id), $params, $opts); } } TestHelpers/TestClockService.php 0000644 00000005215 15107340753 0012743 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\TestHelpers; class TestClockService extends \Stripe\Service\AbstractService { /** * Starts advancing a test clock to a specified time in the future. Advancement is * done when status changes to <code>Ready</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TestHelpers\TestClock */ public function advance($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/test_clocks/%s/advance', $id), $params, $opts); } /** * Returns a list of your test clocks. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\TestHelpers\TestClock> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/test_helpers/test_clocks', $params, $opts); } /** * Creates a new test clock that can be attached to new customers and quotes. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TestHelpers\TestClock */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/test_helpers/test_clocks', $params, $opts); } /** * Deletes a test clock. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TestHelpers\TestClock */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/test_helpers/test_clocks/%s', $id), $params, $opts); } /** * Retrieves a test clock. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TestHelpers\TestClock */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/test_helpers/test_clocks/%s', $id), $params, $opts); } } PaymentIntentService.php 0000644 00000027254 15107340753 0011414 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PaymentIntentService extends \Stripe\Service\AbstractService { /** * Returns a list of PaymentIntents. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentIntent> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payment_intents', $params, $opts); } /** * Manually reconcile the remaining amount for a <code>customer_balance</code> * PaymentIntent. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function applyCustomerBalance($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/apply_customer_balance', $id), $params, $opts); } /** * You can cancel a PaymentIntent object when it’s in one of these statuses: * <code>requires_payment_method</code>, <code>requires_capture</code>, * <code>requires_confirmation</code>, <code>requires_action</code> or, <a * href="/docs/payments/intents">in rare cases</a>, <code>processing</code>. * * After it’s canceled, no additional charges are made by the PaymentIntent and any * operations on the PaymentIntent fail with an error. For PaymentIntents with a * <code>status</code> of <code>requires_capture</code>, the remaining * <code>amount_capturable</code> is automatically refunded. * * You can’t cancel the PaymentIntent for a Checkout Session. <a * href="/docs/api/checkout/sessions/expire">Expire the Checkout Session</a> * instead. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/cancel', $id), $params, $opts); } /** * Capture the funds of an existing uncaptured PaymentIntent when its status is * <code>requires_capture</code>. * * Uncaptured PaymentIntents are cancelled a set number of days (7 by default) * after their creation. * * Learn more about <a href="/docs/payments/capture-later">separate authorization * and capture</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function capture($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/capture', $id), $params, $opts); } /** * Confirm that your customer intends to pay with current or provided payment * method. Upon confirmation, the PaymentIntent will attempt to initiate a payment. * If the selected payment method requires additional authentication steps, the * PaymentIntent will transition to the <code>requires_action</code> status and * suggest additional actions via <code>next_action</code>. If payment fails, the * PaymentIntent transitions to the <code>requires_payment_method</code> status or * the <code>canceled</code> status if the confirmation limit is reached. If * payment succeeds, the PaymentIntent will transition to the * <code>succeeded</code> status (or <code>requires_capture</code>, if * <code>capture_method</code> is set to <code>manual</code>). If the * <code>confirmation_method</code> is <code>automatic</code>, payment may be * attempted using our <a * href="/docs/stripe-js/reference#stripe-handle-card-payment">client SDKs</a> and * the PaymentIntent’s <a * href="#payment_intent_object-client_secret">client_secret</a>. After * <code>next_action</code>s are handled by the client, no additional confirmation * is required to complete the payment. If the <code>confirmation_method</code> is * <code>manual</code>, all payment attempts must be initiated using a secret key. * If any actions are required for the payment, the PaymentIntent will return to * the <code>requires_confirmation</code> state after those actions are completed. * Your server needs to then explicitly re-confirm the PaymentIntent to initiate * the next payment attempt. Read the <a * href="/docs/payments/payment-intents/web-manual">expanded documentation</a> to * learn more about manual confirmation. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function confirm($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/confirm', $id), $params, $opts); } /** * Creates a PaymentIntent object. * * After the PaymentIntent is created, attach a payment method and <a * href="/docs/api/payment_intents/confirm">confirm</a> to continue the payment. * Learn more about <a href="/docs/payments/payment-intents">the available payment * flows with the Payment Intents API</a>. * * When you use <code>confirm=true</code> during creation, it’s equivalent to * creating and confirming the PaymentIntent in the same call. You can use any * parameters available in the <a href="/docs/api/payment_intents/confirm">confirm * API</a> when you supply <code>confirm=true</code>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payment_intents', $params, $opts); } /** * Perform an incremental authorization on an eligible <a * href="/docs/api/payment_intents/object">PaymentIntent</a>. To be eligible, the * PaymentIntent’s status must be <code>requires_capture</code> and <a * href="/docs/api/charges/object#charge_object-payment_method_details-card_present-incremental_authorization_supported">incremental_authorization_supported</a> * must be <code>true</code>. * * Incremental authorizations attempt to increase the authorized amount on your * customer’s card to the new, higher <code>amount</code> provided. Similar to the * initial authorization, incremental authorizations can be declined. A single * PaymentIntent can call this endpoint multiple times to further increase the * authorized amount. * * If the incremental authorization succeeds, the PaymentIntent object returns with * the updated <a * href="/docs/api/payment_intents/object#payment_intent_object-amount">amount</a>. * If the incremental authorization fails, a <a * href="/docs/error-codes#card-declined">card_declined</a> error returns, and no * other fields on the PaymentIntent or Charge update. The PaymentIntent object * remains capturable for the previously authorized amount. * * Each PaymentIntent can have a maximum of 10 incremental authorization attempts, * including declines. After it’s captured, a PaymentIntent can no longer be * incremented. * * Learn more about <a * href="/docs/terminal/features/incremental-authorizations">incremental * authorizations</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function incrementAuthorization($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/increment_authorization', $id), $params, $opts); } /** * Retrieves the details of a PaymentIntent that has previously been created. * * You can retrieve a PaymentIntent client-side using a publishable key when the * <code>client_secret</code> is in the query string. * * If you retrieve a PaymentIntent with a publishable key, it only returns a subset * of properties. Refer to the <a href="#payment_intent_object">payment intent</a> * object reference for more details. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payment_intents/%s', $id), $params, $opts); } /** * Search for PaymentIntents you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\PaymentIntent> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/payment_intents/search', $params, $opts); } /** * Updates properties on a PaymentIntent object without confirming. * * Depending on which properties you update, you might need to confirm the * PaymentIntent again. For example, updating the <code>payment_method</code> * always requires you to confirm the PaymentIntent again. If you prefer to update * and confirm at the same time, we recommend updating properties through the <a * href="/docs/api/payment_intents/confirm">confirm API</a> instead. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s', $id), $params, $opts); } /** * Verifies microdeposits on a PaymentIntent object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentIntent */ public function verifyMicrodeposits($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_intents/%s/verify_microdeposits', $id), $params, $opts); } } AccountLinkService.php 0000644 00000001316 15107340754 0011017 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class AccountLinkService extends \Stripe\Service\AbstractService { /** * Creates an AccountLink object that includes a single-use Stripe URL that the * platform can redirect their user to in order to take them through the Connect * Onboarding flow. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\AccountLink */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/account_links', $params, $opts); } } TaxRateService.php 0000644 00000003773 15107340754 0010166 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class TaxRateService extends \Stripe\Service\AbstractService { /** * Returns a list of your tax rates. Tax rates are returned sorted by creation * date, with the most recently created tax rates appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\TaxRate> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/tax_rates', $params, $opts); } /** * Creates a new tax rate. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxRate */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/tax_rates', $params, $opts); } /** * Retrieves a tax rate with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxRate */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/tax_rates/%s', $id), $params, $opts); } /** * Updates an existing tax rate. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxRate */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/tax_rates/%s', $id), $params, $opts); } } CoreServiceFactory.php 0000644 00000015227 15107340754 0011033 0 ustar 00 <?php namespace Stripe\Service; /** * Service factory class for API resources in the root namespace. * * @property OAuthService $oauth * // Doc: The beginning of the section generated from our OpenAPI spec * @property AccountLinkService $accountLinks * @property AccountService $accounts * @property AccountSessionService $accountSessions * @property ApplePayDomainService $applePayDomains * @property ApplicationFeeService $applicationFees * @property Apps\AppsServiceFactory $apps * @property BalanceService $balance * @property BalanceTransactionService $balanceTransactions * @property BillingPortal\BillingPortalServiceFactory $billingPortal * @property ChargeService $charges * @property Checkout\CheckoutServiceFactory $checkout * @property CountrySpecService $countrySpecs * @property CouponService $coupons * @property CreditNoteService $creditNotes * @property CustomerService $customers * @property DisputeService $disputes * @property EphemeralKeyService $ephemeralKeys * @property EventService $events * @property ExchangeRateService $exchangeRates * @property FileLinkService $fileLinks * @property FileService $files * @property FinancialConnections\FinancialConnectionsServiceFactory $financialConnections * @property Identity\IdentityServiceFactory $identity * @property InvoiceItemService $invoiceItems * @property InvoiceService $invoices * @property Issuing\IssuingServiceFactory $issuing * @property MandateService $mandates * @property PaymentIntentService $paymentIntents * @property PaymentLinkService $paymentLinks * @property PaymentMethodConfigurationService $paymentMethodConfigurations * @property PaymentMethodDomainService $paymentMethodDomains * @property PaymentMethodService $paymentMethods * @property PayoutService $payouts * @property PlanService $plans * @property PriceService $prices * @property ProductService $products * @property PromotionCodeService $promotionCodes * @property QuoteService $quotes * @property Radar\RadarServiceFactory $radar * @property RefundService $refunds * @property Reporting\ReportingServiceFactory $reporting * @property ReviewService $reviews * @property SetupAttemptService $setupAttempts * @property SetupIntentService $setupIntents * @property ShippingRateService $shippingRates * @property Sigma\SigmaServiceFactory $sigma * @property SourceService $sources * @property SubscriptionItemService $subscriptionItems * @property SubscriptionService $subscriptions * @property SubscriptionScheduleService $subscriptionSchedules * @property Tax\TaxServiceFactory $tax * @property TaxCodeService $taxCodes * @property TaxRateService $taxRates * @property Terminal\TerminalServiceFactory $terminal * @property TestHelpers\TestHelpersServiceFactory $testHelpers * @property TokenService $tokens * @property TopupService $topups * @property TransferService $transfers * @property Treasury\TreasuryServiceFactory $treasury * @property WebhookEndpointService $webhookEndpoints * // Doc: The end of the section generated from our OpenAPI spec */ class CoreServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'oauth' => OAuthService::class, // Class Map: The beginning of the section generated from our OpenAPI spec 'accountLinks' => AccountLinkService::class, 'accounts' => AccountService::class, 'accountSessions' => AccountSessionService::class, 'applePayDomains' => ApplePayDomainService::class, 'applicationFees' => ApplicationFeeService::class, 'apps' => Apps\AppsServiceFactory::class, 'balance' => BalanceService::class, 'balanceTransactions' => BalanceTransactionService::class, 'billingPortal' => BillingPortal\BillingPortalServiceFactory::class, 'charges' => ChargeService::class, 'checkout' => Checkout\CheckoutServiceFactory::class, 'countrySpecs' => CountrySpecService::class, 'coupons' => CouponService::class, 'creditNotes' => CreditNoteService::class, 'customers' => CustomerService::class, 'disputes' => DisputeService::class, 'ephemeralKeys' => EphemeralKeyService::class, 'events' => EventService::class, 'exchangeRates' => ExchangeRateService::class, 'fileLinks' => FileLinkService::class, 'files' => FileService::class, 'financialConnections' => FinancialConnections\FinancialConnectionsServiceFactory::class, 'identity' => Identity\IdentityServiceFactory::class, 'invoiceItems' => InvoiceItemService::class, 'invoices' => InvoiceService::class, 'issuing' => Issuing\IssuingServiceFactory::class, 'mandates' => MandateService::class, 'paymentIntents' => PaymentIntentService::class, 'paymentLinks' => PaymentLinkService::class, 'paymentMethodConfigurations' => PaymentMethodConfigurationService::class, 'paymentMethodDomains' => PaymentMethodDomainService::class, 'paymentMethods' => PaymentMethodService::class, 'payouts' => PayoutService::class, 'plans' => PlanService::class, 'prices' => PriceService::class, 'products' => ProductService::class, 'promotionCodes' => PromotionCodeService::class, 'quotes' => QuoteService::class, 'radar' => Radar\RadarServiceFactory::class, 'refunds' => RefundService::class, 'reporting' => Reporting\ReportingServiceFactory::class, 'reviews' => ReviewService::class, 'setupAttempts' => SetupAttemptService::class, 'setupIntents' => SetupIntentService::class, 'shippingRates' => ShippingRateService::class, 'sigma' => Sigma\SigmaServiceFactory::class, 'sources' => SourceService::class, 'subscriptionItems' => SubscriptionItemService::class, 'subscriptions' => SubscriptionService::class, 'subscriptionSchedules' => SubscriptionScheduleService::class, 'tax' => Tax\TaxServiceFactory::class, 'taxCodes' => TaxCodeService::class, 'taxRates' => TaxRateService::class, 'terminal' => Terminal\TerminalServiceFactory::class, 'testHelpers' => TestHelpers\TestHelpersServiceFactory::class, 'tokens' => TokenService::class, 'topups' => TopupService::class, 'transfers' => TransferService::class, 'treasury' => Treasury\TreasuryServiceFactory::class, 'webhookEndpoints' => WebhookEndpointService::class, // Class Map: The end of the section generated from our OpenAPI spec ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } OAuthService.php 0000644 00000011412 15107340755 0007624 0 ustar 00 <?php namespace Stripe\Service; class OAuthService extends \Stripe\Service\AbstractService { /** * Sends a request to Stripe's Connect API. * * @param 'delete'|'get'|'post' $method the HTTP method * @param string $path the path of the request * @param array $params the parameters of the request * @param array|\Stripe\Util\RequestOptions $opts the special modifiers of the request * * @return \Stripe\StripeObject the object returned by Stripe's Connect API */ protected function requestConnect($method, $path, $params, $opts) { $opts = $this->_parseOpts($opts); $opts->apiBase = $this->_getBase($opts); return $this->request($method, $path, $params, $opts); } /** * Generates a URL to Stripe's OAuth form. * * @param null|array $params * @param null|array $opts * * @return string the URL to Stripe's OAuth form */ public function authorizeUrl($params = null, $opts = null) { $params = $params ?: []; $opts = $this->_parseOpts($opts); $base = $this->_getBase($opts); $params['client_id'] = $this->_getClientId($params); if (!\array_key_exists('response_type', $params)) { $params['response_type'] = 'code'; } $query = \Stripe\Util\Util::encodeParameters($params); return $base . '/oauth/authorize?' . $query; } /** * Use an authoriztion code to connect an account to your platform and * fetch the user's credentials. * * @param null|array $params * @param null|array $opts * * @throws \Stripe\Exception\OAuth\OAuthErrorException if the request fails * * @return \Stripe\StripeObject object containing the response from the API */ public function token($params = null, $opts = null) { $params = $params ?: []; $params['client_secret'] = $this->_getClientSecret($params); return $this->requestConnect('post', '/oauth/token', $params, $opts); } /** * Disconnects an account from your platform. * * @param null|array $params * @param null|array $opts * * @throws \Stripe\Exception\OAuth\OAuthErrorException if the request fails * * @return \Stripe\StripeObject object containing the response from the API */ public function deauthorize($params = null, $opts = null) { $params = $params ?: []; $params['client_id'] = $this->_getClientId($params); return $this->requestConnect('post', '/oauth/deauthorize', $params, $opts); } private function _getClientId($params = null) { $clientId = ($params && \array_key_exists('client_id', $params)) ? $params['client_id'] : null; if (null === $clientId) { $clientId = $this->client->getClientId(); } if (null === $clientId) { $msg = 'No client_id provided. (HINT: set your client_id using ' . '`new \Stripe\StripeClient([clientId => <CLIENT-ID> ])`)". You can find your client_ids ' . 'in your Stripe dashboard at ' . 'https://dashboard.stripe.com/account/applications/settings, ' . 'after registering your account as a platform. See ' . 'https://stripe.com/docs/connect/standard-accounts for details, ' . 'or email support@stripe.com if you have any questions.'; throw new \Stripe\Exception\AuthenticationException($msg); } return $clientId; } private function _getClientSecret($params = null) { if (\array_key_exists('client_secret', $params)) { return $params['client_secret']; } return $this->client->getApiKey(); } /** * @param array|\Stripe\Util\RequestOptions $opts the special modifiers of the request * * @throws \Stripe\Exception\InvalidArgumentException * * @return \Stripe\Util\RequestOptions */ private function _parseOpts($opts) { if (\is_array($opts)) { if (\array_key_exists('connect_base', $opts)) { // Throw an exception for the convenience of anybody migrating to // \Stripe\Service\OAuthService from \Stripe\OAuth, where `connect_base` // was the name of the parameter that behaves as `api_base` does here. throw new \Stripe\Exception\InvalidArgumentException('Use `api_base`, not `connect_base`'); } } return \Stripe\Util\RequestOptions::parse($opts); } /** * @param \Stripe\Util\RequestOptions $opts * * @return string */ private function _getBase($opts) { return isset($opts->apiBase) ? $opts->apiBase : $this->client->getConnectBase(); } } InvoiceItemService.php 0000644 00000005753 15107340755 0011032 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class InvoiceItemService extends \Stripe\Service\AbstractService { /** * Returns a list of your invoice items. Invoice items are returned sorted by * creation date, with the most recently created invoice items appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\InvoiceItem> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/invoiceitems', $params, $opts); } /** * Creates an item to be added to a draft invoice (up to 250 items per invoice). If * no invoice is specified, the item will be on the next invoice created for the * customer specified. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\InvoiceItem */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/invoiceitems', $params, $opts); } /** * Deletes an invoice item, removing it from an invoice. Deleting invoice items is * only possible when they’re not attached to invoices, or if it’s attached to a * draft invoice. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\InvoiceItem */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/invoiceitems/%s', $id), $params, $opts); } /** * Retrieves the invoice item with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\InvoiceItem */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/invoiceitems/%s', $id), $params, $opts); } /** * Updates the amount or description of an invoice item on an upcoming invoice. * Updating an invoice item is only possible before the invoice it’s attached to is * closed. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\InvoiceItem */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoiceitems/%s', $id), $params, $opts); } } BalanceTransactionService.php 0000644 00000003052 15107340756 0012341 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class BalanceTransactionService extends \Stripe\Service\AbstractService { /** * Returns a list of transactions that have contributed to the Stripe account * balance (e.g., charges, transfers, and so forth). The transactions are returned * in sorted order, with the most recent transactions appearing first. * * Note that this endpoint was previously called “Balance history” and used the * path <code>/v1/balance/history</code>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\BalanceTransaction> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/balance_transactions', $params, $opts); } /** * Retrieves the balance transaction with the given ID. * * Note that this endpoint previously used the path * <code>/v1/balance/history/:id</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BalanceTransaction */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/balance_transactions/%s', $id), $params, $opts); } } ApplePayDomainService.php 0000644 00000003675 15107340756 0011464 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ApplePayDomainService extends \Stripe\Service\AbstractService { /** * List apple pay domains. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\ApplePayDomain> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/apple_pay/domains', $params, $opts); } /** * Create an apple pay domain. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplePayDomain */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/apple_pay/domains', $params, $opts); } /** * Delete an apple pay domain. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplePayDomain */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/apple_pay/domains/%s', $id), $params, $opts); } /** * Retrieve an apple pay domain. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplePayDomain */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/apple_pay/domains/%s', $id), $params, $opts); } } PaymentMethodService.php 0000644 00000012270 15107340757 0011367 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PaymentMethodService extends \Stripe\Service\AbstractService { /** * Returns a list of PaymentMethods for Treasury flows. If you want to list the * PaymentMethods attached to a Customer for payments, you should use the <a * href="/docs/api/payment_methods/customer_list">List a Customer’s * PaymentMethods</a> API instead. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentMethod> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payment_methods', $params, $opts); } /** * Attaches a PaymentMethod object to a Customer. * * To attach a new PaymentMethod to a customer for future payments, we recommend * you use a <a href="/docs/api/setup_intents">SetupIntent</a> or a PaymentIntent * with <a * href="/docs/api/payment_intents/create#create_payment_intent-setup_future_usage">setup_future_usage</a>. * These approaches will perform any necessary steps to set up the PaymentMethod * for future payments. Using the <code>/v1/payment_methods/:id/attach</code> * endpoint without first using a SetupIntent or PaymentIntent with * <code>setup_future_usage</code> does not optimize the PaymentMethod for future * use, which makes later declines and payment friction more likely. See <a * href="/docs/payments/payment-intents#future-usage">Optimizing cards for future * payments</a> for more information about setting up future payments. * * To use this PaymentMethod as the default for invoice or subscription payments, * set <a * href="/docs/api/customers/update#update_customer-invoice_settings-default_payment_method"><code>invoice_settings.default_payment_method</code></a>, * on the Customer to the PaymentMethod’s ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function attach($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_methods/%s/attach', $id), $params, $opts); } /** * Creates a PaymentMethod object. Read the <a * href="/docs/stripe-js/reference#stripe-create-payment-method">Stripe.js * reference</a> to learn how to create PaymentMethods via Stripe.js. * * Instead of creating a PaymentMethod directly, we recommend using the <a * href="/docs/payments/accept-a-payment">PaymentIntents</a> API to accept a * payment immediately or the <a * href="/docs/payments/save-and-reuse">SetupIntent</a> API to collect payment * method details ahead of a future payment. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payment_methods', $params, $opts); } /** * Detaches a PaymentMethod object from a Customer. After a PaymentMethod is * detached, it can no longer be used for a payment or re-attached to a Customer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function detach($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_methods/%s/detach', $id), $params, $opts); } /** * Retrieves a PaymentMethod object attached to the StripeAccount. To retrieve a * payment method attached to a Customer, you should use <a * href="/docs/api/payment_methods/customer">Retrieve a Customer’s * PaymentMethods</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payment_methods/%s', $id), $params, $opts); } /** * Updates a PaymentMethod object. A PaymentMethod must be attached a customer to * be updated. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_methods/%s', $id), $params, $opts); } } FileService.php 0000644 00000004037 15107340757 0007472 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class FileService extends \Stripe\Service\AbstractService { /** * Returns a list of the files that your account has access to. Stripe sorts and * returns the files by their creation dates, placing the most recently created * files at the top. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\File> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/files', $params, $opts); } /** * Retrieves the details of an existing file object. After you supply a unique file * ID, Stripe returns the corresponding file object. Learn how to <a * href="/docs/file-upload#download-file-contents">access file contents</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\File */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/files/%s', $id), $params, $opts); } /** * Create a file. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @return \Stripe\File */ public function create($params = null, $opts = null) { $opts = \Stripe\Util\RequestOptions::parse($opts); if (!isset($opts->apiBase)) { $opts->apiBase = $this->getClient()->getFilesBase(); } // Manually flatten params, otherwise curl's multipart encoder will // choke on nested null|arrays. $flatParams = \array_column(\Stripe\Util\Util::flattenParams($params), 1, 0); return $this->request('post', '/v1/files', $flatParams, $opts); } } QuoteService.php 0000644 00000013436 15107340757 0007713 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class QuoteService extends \Stripe\Service\AbstractService { /** * Accepts the specified quote. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function accept($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/quotes/%s/accept', $id), $params, $opts); } /** * Returns a list of your quotes. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Quote> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/quotes', $params, $opts); } /** * When retrieving a quote, there is an includable <a * href="https://stripe.com/docs/api/quotes/object#quote_object-computed-upfront-line_items"><strong>computed.upfront.line_items</strong></a> * property containing the first handful of those items. There is also a URL where * you can retrieve the full (paginated) list of upfront line items. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\LineItem> */ public function allComputedUpfrontLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/quotes/%s/computed_upfront_line_items', $id), $params, $opts); } /** * When retrieving a quote, there is an includable <strong>line_items</strong> * property containing the first handful of those items. There is also a URL where * you can retrieve the full (paginated) list of line items. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\LineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/quotes/%s/line_items', $id), $params, $opts); } /** * Cancels the quote. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/quotes/%s/cancel', $id), $params, $opts); } /** * A quote models prices and services for a customer. Default options for * <code>header</code>, <code>description</code>, <code>footer</code>, and * <code>expires_at</code> can be set in the dashboard via the <a * href="https://dashboard.stripe.com/settings/billing/quote">quote template</a>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/quotes', $params, $opts); } /** * Finalizes the quote. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function finalizeQuote($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/quotes/%s/finalize', $id), $params, $opts); } /** * Download the PDF for a finalized quote. * * @param string $id * @param callable $readBodyChunkCallable * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return mixed */ public function pdf($id, $readBodyChunkCallable, $params = null, $opts = null) { $opts = \Stripe\Util\RequestOptions::parse($opts); if (!isset($opts->apiBase)) { $opts->apiBase = $this->getClient()->getFilesBase(); } return $this->requestStream('get', $this->buildPath('/v1/quotes/%s/pdf', $id), $readBodyChunkCallable, $params, $opts); } /** * Retrieves the quote with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/quotes/%s', $id), $params, $opts); } /** * A quote models prices and services for a customer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Quote */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/quotes/%s', $id), $params, $opts); } } PayoutService.php 0000644 00000011071 15107340757 0010070 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PayoutService extends \Stripe\Service\AbstractService { /** * Returns a list of existing payouts sent to third-party bank accounts or payouts * that Stripe sent to you. The payouts return in sorted order, with the most * recently created payouts appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Payout> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payouts', $params, $opts); } /** * You can cancel a previously created payout if it hasn’t been paid out yet. * Stripe refunds the funds to your available balance. You can’t cancel automatic * Stripe payouts. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Payout */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payouts/%s/cancel', $id), $params, $opts); } /** * To send funds to your own bank account, create a new payout object. Your <a * href="#balance">Stripe balance</a> must cover the payout amount. If it doesn’t, * you receive an “Insufficient Funds” error. * * If your API key is in test mode, money won’t actually be sent, though every * other action occurs as if you’re in live mode. * * If you create a manual payout on a Stripe account that uses multiple payment * source types, you need to specify the source type balance that the payout draws * from. The <a href="#balance_object">balance object</a> details available and * pending amounts by source type. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Payout */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payouts', $params, $opts); } /** * Retrieves the details of an existing payout. Supply the unique payout ID from * either a payout creation request or the payout list. Stripe returns the * corresponding payout information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Payout */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payouts/%s', $id), $params, $opts); } /** * Reverses a payout by debiting the destination bank account. At this time, you * can only reverse payouts for connected accounts to US bank accounts. If the * payout is in the <code>pending</code> status, use * <code>/v1/payouts/:id/cancel</code> instead. * * By requesting a reversal through <code>/v1/payouts/:id/reverse</code>, you * confirm that the authorized signatory of the selected bank account authorizes * the debit on the bank account and that no other authorization is required. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Payout */ public function reverse($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payouts/%s/reverse', $id), $params, $opts); } /** * Updates the specified payout by setting the values of the parameters you pass. * We don’t change parameters that you don’t provide. This request only accepts the * metadata as arguments. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Payout */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payouts/%s', $id), $params, $opts); } } TaxCodeService.php 0000644 00000002415 15107340757 0010140 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class TaxCodeService extends \Stripe\Service\AbstractService { /** * A list of <a href="https://stripe.com/docs/tax/tax-categories">all tax codes * available</a> to add to Products in order to allow specific tax calculations. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\TaxCode> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/tax_codes', $params, $opts); } /** * Retrieves the details of an existing tax code. Supply the unique tax code ID and * Stripe will return the corresponding tax code information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxCode */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/tax_codes/%s', $id), $params, $opts); } } ReviewService.php 0000644 00000003375 15107340760 0010052 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ReviewService extends \Stripe\Service\AbstractService { /** * Returns a list of <code>Review</code> objects that have <code>open</code> set to * <code>true</code>. The objects are sorted in descending order by creation date, * with the most recently created object appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Review> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/reviews', $params, $opts); } /** * Approves a <code>Review</code> object, closing it and removing it from the list * of reviews. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Review */ public function approve($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/reviews/%s/approve', $id), $params, $opts); } /** * Retrieves a <code>Review</code> object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Review */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/reviews/%s', $id), $params, $opts); } } Checkout/CheckoutServiceFactory.php 0000644 00000001067 15107340760 0013447 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Checkout; /** * Service factory class for API resources in the Checkout namespace. * * @property SessionService $sessions */ class CheckoutServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'sessions' => SessionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Checkout/SessionService.php 0000644 00000005610 15107340760 0011773 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Checkout; class SessionService extends \Stripe\Service\AbstractService { /** * Returns a list of Checkout Sessions. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Checkout\Session> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/checkout/sessions', $params, $opts); } /** * When retrieving a Checkout Session, there is an includable * <strong>line_items</strong> property containing the first handful of those * items. There is also a URL where you can retrieve the full (paginated) list of * line items. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\LineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/checkout/sessions/%s/line_items', $id), $params, $opts); } /** * Creates a Session object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Checkout\Session */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/checkout/sessions', $params, $opts); } /** * A Session can be expired when it is in one of these statuses: <code>open</code>. * * After it expires, a customer can’t complete a Session and customers loading the * Session see a message saying the Session is expired. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Checkout\Session */ public function expire($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/checkout/sessions/%s/expire', $id), $params, $opts); } /** * Retrieves a Session object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Checkout\Session */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/checkout/sessions/%s', $id), $params, $opts); } } FinancialConnections/SessionService.php 0000644 00000002456 15107340760 0014322 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\FinancialConnections; class SessionService extends \Stripe\Service\AbstractService { /** * To launch the Financial Connections authorization flow, create a * <code>Session</code>. The session’s <code>client_secret</code> can be used to * launch the flow using Stripe.js. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FinancialConnections\Session */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/financial_connections/sessions', $params, $opts); } /** * Retrieves the details of a Financial Connections <code>Session</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FinancialConnections\Session */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/financial_connections/sessions/%s', $id), $params, $opts); } } FinancialConnections/FinancialConnectionsServiceFactory.php 0000644 00000001256 15107340761 0020314 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\FinancialConnections; /** * Service factory class for API resources in the FinancialConnections namespace. * * @property AccountService $accounts * @property SessionService $sessions */ class FinancialConnectionsServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'accounts' => AccountService::class, 'sessions' => SessionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } FinancialConnections/AccountService.php 0000644 00000005755 15107340761 0014301 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\FinancialConnections; class AccountService extends \Stripe\Service\AbstractService { /** * Returns a list of Financial Connections <code>Account</code> objects. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\FinancialConnections\Account> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/financial_connections/accounts', $params, $opts); } /** * Lists all owners for a given <code>Account</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\FinancialConnections\AccountOwner> */ public function allOwners($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/financial_connections/accounts/%s/owners', $id), $params, $opts); } /** * Disables your access to a Financial Connections <code>Account</code>. You will * no longer be able to access data associated with the account (e.g. balances, * transactions). * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FinancialConnections\Account */ public function disconnect($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/financial_connections/accounts/%s/disconnect', $id), $params, $opts); } /** * Refreshes the data associated with a Financial Connections <code>Account</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FinancialConnections\Account */ public function refresh($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/financial_connections/accounts/%s/refresh', $id), $params, $opts); } /** * Retrieves the details of an Financial Connections <code>Account</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FinancialConnections\Account */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/financial_connections/accounts/%s', $id), $params, $opts); } } PaymentMethodDomainService.php 0000644 00000006256 15107340762 0012522 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PaymentMethodDomainService extends \Stripe\Service\AbstractService { /** * Lists the details of existing payment method domains. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentMethodDomain> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/payment_method_domains', $params, $opts); } /** * Creates a payment method domain. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodDomain */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/payment_method_domains', $params, $opts); } /** * Retrieves the details of an existing payment method domain. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodDomain */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/payment_method_domains/%s', $id), $params, $opts); } /** * Updates an existing payment method domain. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodDomain */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_method_domains/%s', $id), $params, $opts); } /** * Some payment methods such as Apple Pay require additional steps to verify a * domain. If the requirements weren’t satisfied when the domain was created, the * payment method will be inactive on the domain. The payment method doesn’t appear * in Elements for this domain until it is active. * * To activate a payment method on an existing payment method domain, complete the * required validation steps specific to the payment method, and then validate the * payment method domain with this endpoint. * * Related guides: <a * href="/docs/payments/payment-methods/pmd-registration">Payment method * domains</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethodDomain */ public function validate($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/payment_method_domains/%s/validate', $id), $params, $opts); } } ExchangeRateService.php 0000644 00000002361 15107340763 0011144 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ExchangeRateService extends \Stripe\Service\AbstractService { /** * Returns a list of objects that contain the rates at which foreign currencies are * converted to one another. Only shows the currencies for which Stripe supports. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\ExchangeRate> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/exchange_rates', $params, $opts); } /** * Retrieves the exchange rates from the given currency to every supported * currency. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ExchangeRate */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/exchange_rates/%s', $id), $params, $opts); } } InvoiceService.php 0000644 00000026460 15107340764 0010211 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class InvoiceService extends \Stripe\Service\AbstractService { /** * You can list all invoices, or list the invoices for a specific customer. The * invoices are returned sorted by creation date, with the most recently created * invoices appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Invoice> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/invoices', $params, $opts); } /** * When retrieving an invoice, you’ll get a <strong>lines</strong> property * containing the total count of line items and the first handful of those items. * There is also a URL where you can retrieve the full (paginated) list of line * items. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\InvoiceLineItem> */ public function allLines($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/invoices/%s/lines', $parentId), $params, $opts); } /** * This endpoint creates a draft invoice for a given customer. The invoice remains * a draft until you <a href="#finalize_invoice">finalize</a> the invoice, which * allows you to <a href="#pay_invoice">pay</a> or <a href="#send_invoice">send</a> * the invoice to your customers. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/invoices', $params, $opts); } /** * Permanently deletes a one-off invoice draft. This cannot be undone. Attempts to * delete invoices that are no longer in a draft state will fail; once an invoice * has been finalized or if an invoice is for a subscription, it must be <a * href="#void_invoice">voided</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/invoices/%s', $id), $params, $opts); } /** * Stripe automatically finalizes drafts before sending and attempting payment on * invoices. However, if you’d like to finalize a draft invoice manually, you can * do so using this method. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function finalizeInvoice($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s/finalize', $id), $params, $opts); } /** * Marking an invoice as uncollectible is useful for keeping track of bad debts * that can be written off for accounting purposes. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function markUncollectible($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s/mark_uncollectible', $id), $params, $opts); } /** * Stripe automatically creates and then attempts to collect payment on invoices * for customers on subscriptions according to your <a * href="https://dashboard.stripe.com/account/billing/automatic">subscriptions * settings</a>. However, if you’d like to attempt payment on an invoice out of the * normal collection schedule or for some other reason, you can do so. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function pay($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s/pay', $id), $params, $opts); } /** * Retrieves the invoice with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/invoices/%s', $id), $params, $opts); } /** * Search for invoices you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Invoice> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/invoices/search', $params, $opts); } /** * Stripe will automatically send invoices to customers according to your <a * href="https://dashboard.stripe.com/account/billing/automatic">subscriptions * settings</a>. However, if you’d like to manually send an invoice to your * customer out of the normal schedule, you can do so. When sending invoices that * have already been paid, there will be no reference to the payment in the email. * * Requests made in test-mode result in no emails being sent, despite sending an * <code>invoice.sent</code> event. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function sendInvoice($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s/send', $id), $params, $opts); } /** * At any time, you can preview the upcoming invoice for a customer. This will show * you all the charges that are pending, including subscription renewal charges, * invoice item charges, etc. It will also show you any discounts that are * applicable to the invoice. * * Note that when you are viewing an upcoming invoice, you are simply viewing a * preview – the invoice has not yet been created. As such, the upcoming invoice * will not show up in invoice listing calls, and you cannot use the API to pay or * edit the invoice. If you want to change the amount that your customer will be * billed, you can add, remove, or update pending invoice items, or update the * customer’s discount. * * You can preview the effects of updating a subscription, including a preview of * what proration will take place. To ensure that the actual proration is * calculated exactly the same as the previewed proration, you should pass a * <code>proration_date</code> parameter when doing the actual subscription update. * The value passed in should be the same as the * <code>subscription_proration_date</code> returned on the upcoming invoice * resource. The recommended way to get only the prorations being previewed is to * consider only proration line items where <code>period[start]</code> is equal to * the <code>subscription_proration_date</code> on the upcoming invoice resource. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function upcoming($params = null, $opts = null) { return $this->request('get', '/v1/invoices/upcoming', $params, $opts); } /** * When retrieving an upcoming invoice, you’ll get a <strong>lines</strong> * property containing the total count of line items and the first handful of those * items. There is also a URL where you can retrieve the full (paginated) list of * line items. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\InvoiceLineItem> */ public function upcomingLines($params = null, $opts = null) { return $this->requestCollection('get', '/v1/invoices/upcoming/lines', $params, $opts); } /** * Draft invoices are fully editable. Once an invoice is <a * href="/docs/billing/invoices/workflow#finalized">finalized</a>, monetary values, * as well as <code>collection_method</code>, become uneditable. * * If you would like to stop the Stripe Billing engine from automatically * finalizing, reattempting payments on, sending reminders for, or <a * href="/docs/billing/invoices/reconciliation">automatically reconciling</a> * invoices, pass <code>auto_advance=false</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s', $id), $params, $opts); } /** * Mark a finalized invoice as void. This cannot be undone. Voiding an invoice is * similar to <a href="#delete_invoice">deletion</a>, however it only applies to * finalized invoices and maintains a papertrail where the invoice can still be * found. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Invoice */ public function voidInvoice($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/invoices/%s/void', $id), $params, $opts); } } TransferService.php 0000644 00000013477 15107340765 0010406 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class TransferService extends \Stripe\Service\AbstractService { /** * Returns a list of existing transfers sent to connected accounts. The transfers * are returned in sorted order, with the most recently created transfers appearing * first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Transfer> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/transfers', $params, $opts); } /** * You can see a list of the reversals belonging to a specific transfer. Note that * the 10 most recent reversals are always available by default on the transfer * object. If you need more than those 10, you can use this API method and the * <code>limit</code> and <code>starting_after</code> parameters to page through * additional reversals. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\TransferReversal> */ public function allReversals($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/transfers/%s/reversals', $parentId), $params, $opts); } /** * To send funds from your Stripe account to a connected account, you create a new * transfer object. Your <a href="#balance">Stripe balance</a> must be able to * cover the transfer amount, or you’ll receive an “Insufficient Funds” error. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Transfer */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/transfers', $params, $opts); } /** * When you create a new reversal, you must specify a transfer to create it on. * * When reversing transfers, you can optionally reverse part of the transfer. You * can do so as many times as you wish until the entire transfer has been reversed. * * Once entirely reversed, a transfer can’t be reversed again. This method will * return an error when called on an already-reversed transfer, or when trying to * reverse more money than is left on a transfer. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TransferReversal */ public function createReversal($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/transfers/%s/reversals', $parentId), $params, $opts); } /** * Retrieves the details of an existing transfer. Supply the unique transfer ID * from either a transfer creation request or the transfer list, and Stripe will * return the corresponding transfer information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Transfer */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/transfers/%s', $id), $params, $opts); } /** * By default, you can see the 10 most recent reversals stored directly on the * transfer object, but you can also retrieve details about a specific reversal * stored on the transfer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TransferReversal */ public function retrieveReversal($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/transfers/%s/reversals/%s', $parentId, $id), $params, $opts); } /** * Updates the specified transfer by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. * * This request accepts only metadata as an argument. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Transfer */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/transfers/%s', $id), $params, $opts); } /** * Updates the specified reversal by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. * * This request only accepts metadata and description as arguments. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TransferReversal */ public function updateReversal($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/transfers/%s/reversals/%s', $parentId, $id), $params, $opts); } } AbstractServiceFactory.php 0000644 00000003215 15107340766 0011703 0 ustar 00 <?php namespace Stripe\Service; /** * Abstract base class for all service factories used to expose service * instances through {@link \Stripe\StripeClient}. * * Service factories serve two purposes: * * 1. Expose properties for all services through the `__get()` magic method. * 2. Lazily initialize each service instance the first time the property for * a given service is used. */ abstract class AbstractServiceFactory { /** @var \Stripe\StripeClientInterface */ private $client; /** @var array<string, AbstractService|AbstractServiceFactory> */ private $services; /** * @param \Stripe\StripeClientInterface $client */ public function __construct($client) { $this->client = $client; $this->services = []; } /** * @param string $name * * @return null|string */ abstract protected function getServiceClass($name); /** * @param string $name * * @return null|AbstractService|AbstractServiceFactory */ public function __get($name) { return $this->getService($name); } /** * @param string $name * * @return null|AbstractService|AbstractServiceFactory */ public function getService($name) { $serviceClass = $this->getServiceClass($name); if (null !== $serviceClass) { if (!\array_key_exists($name, $this->services)) { $this->services[$name] = new $serviceClass($this->client); } return $this->services[$name]; } \trigger_error('Undefined property: ' . static::class . '::$' . $name); return null; } } Identity/IdentityServiceFactory.php 0000644 00000001346 15107340766 0013525 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Identity; /** * Service factory class for API resources in the Identity namespace. * * @property VerificationReportService $verificationReports * @property VerificationSessionService $verificationSessions */ class IdentityServiceFactory extends \Stripe\Service\AbstractServiceFactory { /** * @var array<string, string> */ private static $classMap = [ 'verificationReports' => VerificationReportService::class, 'verificationSessions' => VerificationSessionService::class, ]; protected function getServiceClass($name) { return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null; } } Identity/VerificationReportService.php 0000644 00000002205 15107340767 0014216 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Identity; class VerificationReportService extends \Stripe\Service\AbstractService { /** * List all verification reports. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Identity\VerificationReport> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/identity/verification_reports', $params, $opts); } /** * Retrieves an existing VerificationReport. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationReport */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/identity/verification_reports/%s', $id), $params, $opts); } } Identity/VerificationSessionService.php 0000644 00000013062 15107340770 0014363 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service\Identity; class VerificationSessionService extends \Stripe\Service\AbstractService { /** * Returns a list of VerificationSessions. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Identity\VerificationSession> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/identity/verification_sessions', $params, $opts); } /** * A VerificationSession object can be canceled when it is in * <code>requires_input</code> <a * href="/docs/identity/how-sessions-work">status</a>. * * Once canceled, future submission attempts are disabled. This cannot be undone. * <a href="/docs/identity/verification-sessions#cancel">Learn more</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationSession */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/identity/verification_sessions/%s/cancel', $id), $params, $opts); } /** * Creates a VerificationSession object. * * After the VerificationSession is created, display a verification modal using the * session <code>client_secret</code> or send your users to the session’s * <code>url</code>. * * If your API key is in test mode, verification checks won’t actually process, * though everything else will occur as if in live mode. * * Related guide: <a href="/docs/identity/verify-identity-documents">Verify your * users’ identity documents</a> * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationSession */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/identity/verification_sessions', $params, $opts); } /** * Redact a VerificationSession to remove all collected information from Stripe. * This will redact the VerificationSession and all objects related to it, * including VerificationReports, Events, request logs, etc. * * A VerificationSession object can be redacted when it is in * <code>requires_input</code> or <code>verified</code> <a * href="/docs/identity/how-sessions-work">status</a>. Redacting a * VerificationSession in <code>requires_action</code> state will automatically * cancel it. * * The redaction process may take up to four days. When the redaction process is in * progress, the VerificationSession’s <code>redaction.status</code> field will be * set to <code>processing</code>; when the process is finished, it will change to * <code>redacted</code> and an <code>identity.verification_session.redacted</code> * event will be emitted. * * Redaction is irreversible. Redacted objects are still accessible in the Stripe * API, but all the fields that contain personal data will be replaced by the * string <code>[redacted]</code> or a similar placeholder. The * <code>metadata</code> field will also be erased. Redacted objects cannot be * updated or used for any purpose. * * <a href="/docs/identity/verification-sessions#redact">Learn more</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationSession */ public function redact($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/identity/verification_sessions/%s/redact', $id), $params, $opts); } /** * Retrieves the details of a VerificationSession that was previously created. * * When the session status is <code>requires_input</code>, you can use this method * to retrieve a valid <code>client_secret</code> or <code>url</code> to allow * re-submission. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationSession */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/identity/verification_sessions/%s', $id), $params, $opts); } /** * Updates a VerificationSession object. * * When the session status is <code>requires_input</code>, you can use this method * to update the verification check and options. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Identity\VerificationSession */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/identity/verification_sessions/%s', $id), $params, $opts); } } MandateService.php 0000644 00000001134 15107340771 0010153 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class MandateService extends \Stripe\Service\AbstractService { /** * Retrieves a Mandate object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Mandate */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/mandates/%s', $id), $params, $opts); } } SubscriptionService.php 0000644 00000023060 15107340772 0011271 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SubscriptionService extends \Stripe\Service\AbstractService { /** * By default, returns a list of subscriptions that have not been canceled. In * order to list canceled subscriptions, specify <code>status=canceled</code>. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Subscription> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/subscriptions', $params, $opts); } /** * Cancels a customer’s subscription immediately. The customer will not be charged * again for the subscription. * * Note, however, that any pending invoice items that you’ve created will still be * charged for at the end of the period, unless manually <a * href="#delete_invoiceitem">deleted</a>. If you’ve set the subscription to cancel * at the end of the period, any pending prorations will also be left in place and * collected at the end of the period. But if the subscription is set to cancel * immediately, pending prorations will be removed. * * By default, upon subscription cancellation, Stripe will stop automatic * collection of all finalized invoices for the customer. This is intended to * prevent unexpected payment attempts after the customer has canceled a * subscription. However, you can resume automatic collection of the invoices * manually after subscription cancellation to have us proceed. Or, you could check * for unpaid invoices before allowing the customer to cancel the subscription at * all. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Subscription */ public function cancel($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/subscriptions/%s', $id), $params, $opts); } /** * Creates a new subscription on an existing customer. Each customer can have up to * 500 active or scheduled subscriptions. * * When you create a subscription with * <code>collection_method=charge_automatically</code>, the first invoice is * finalized as part of the request. The <code>payment_behavior</code> parameter * determines the exact behavior of the initial payment. * * To start subscriptions where the first invoice always begins in a * <code>draft</code> status, use <a * href="/docs/billing/subscriptions/subscription-schedules#managing">subscription * schedules</a> instead. Schedules provide the flexibility to model more complex * billing configurations that change over time. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Subscription */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/subscriptions', $params, $opts); } /** * Removes the currently applied discount on a subscription. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Discount */ public function deleteDiscount($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/subscriptions/%s/discount', $id), $params, $opts); } /** * Initiates resumption of a paused subscription, optionally resetting the billing * cycle anchor and creating prorations. If a resumption invoice is generated, it * must be paid or marked uncollectible before the subscription will be unpaused. * If payment succeeds the subscription will become <code>active</code>, and if * payment fails the subscription will be <code>past_due</code>. The resumption * invoice will void automatically if not paid by the expiration date. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Subscription */ public function resume($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscriptions/%s/resume', $id), $params, $opts); } /** * Retrieves the subscription with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Subscription */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/subscriptions/%s', $id), $params, $opts); } /** * Search for subscriptions you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Subscription> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/subscriptions/search', $params, $opts); } /** * Updates an existing subscription to match the specified parameters. When * changing prices or quantities, we optionally prorate the price we charge next * month to make up for any price changes. To preview how the proration is * calculated, use the <a href="/docs/api/invoices/upcoming">upcoming invoice</a> * endpoint. * * By default, we prorate subscription changes. For example, if a customer signs up * on May 1 for a <currency>100</currency> price, they’ll be billed * <currency>100</currency> immediately. If on May 15 they switch to a * <currency>200</currency> price, then on June 1 they’ll be billed * <currency>250</currency> (<currency>200</currency> for a renewal of her * subscription, plus a <currency>50</currency> prorating adjustment for half of * the previous month’s <currency>100</currency> difference). Similarly, a * downgrade generates a credit that is applied to the next invoice. We also * prorate when you make quantity changes. * * Switching prices does not normally change the billing date or generate an * immediate charge unless: * * <ul> <li>The billing interval is changed (for example, from monthly to * yearly).</li> <li>The subscription moves from free to paid, or paid to * free.</li> <li>A trial starts or ends.</li> </ul> * * In these cases, we apply a credit for the unused time on the previous price, * immediately charge the customer using the new price, and reset the billing date. * * If you want to charge for an upgrade immediately, pass * <code>proration_behavior</code> as <code>always_invoice</code> to create * prorations, automatically invoice the customer for those proration adjustments, * and attempt to collect payment. If you pass <code>create_prorations</code>, the * prorations are created but not automatically invoiced. If you want to bill the * customer for the prorations before the subscription’s renewal date, you need to * manually <a href="/docs/api/invoices/create">invoice the customer</a>. * * If you don’t want to prorate, set the <code>proration_behavior</code> option to * <code>none</code>. With this option, the customer is billed * <currency>100</currency> on May 1 and <currency>200</currency> on June 1. * Similarly, if you set <code>proration_behavior</code> to <code>none</code> when * switching between different billing intervals (for example, from monthly to * yearly), we don’t generate any credits for the old subscription’s unused time. * We still reset the billing date and bill immediately for the new subscription. * * Updating the quantity on a subscription many times in an hour may result in <a * href="/docs/rate-limits">rate limiting</a>. If you need to bill for a frequently * changing quantity, consider integrating <a * href="/docs/billing/subscriptions/usage-based">usage-based billing</a> instead. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Subscription */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscriptions/%s', $id), $params, $opts); } } CustomerService.php 0000644 00000043601 15107340773 0010412 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class CustomerService extends \Stripe\Service\AbstractService { /** * Returns a list of your customers. The customers are returned sorted by creation * date, with the most recent customers appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Customer> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/customers', $params, $opts); } /** * Returns a list of transactions that updated the customer’s <a * href="/docs/billing/customer/balance">balances</a>. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CustomerBalanceTransaction> */ public function allBalanceTransactions($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/customers/%s/balance_transactions', $parentId), $params, $opts); } /** * Returns a list of transactions that modified the customer’s <a * href="/docs/payments/customer-balance">cash balance</a>. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CustomerCashBalanceTransaction> */ public function allCashBalanceTransactions($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/customers/%s/cash_balance_transactions', $parentId), $params, $opts); } /** * Returns a list of PaymentMethods for a given Customer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PaymentMethod> */ public function allPaymentMethods($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/customers/%s/payment_methods', $id), $params, $opts); } /** * List sources for a specified customer. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source> */ public function allSources($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/customers/%s/sources', $parentId), $params, $opts); } /** * Returns a list of tax IDs for a customer. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\TaxId> */ public function allTaxIds($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/customers/%s/tax_ids', $parentId), $params, $opts); } /** * Creates a new customer object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Customer */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/customers', $params, $opts); } /** * Creates an immutable transaction that updates the customer’s credit <a * href="/docs/billing/customer/balance">balance</a>. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CustomerBalanceTransaction */ public function createBalanceTransaction($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/balance_transactions', $parentId), $params, $opts); } /** * Retrieve funding instructions for a customer cash balance. If funding * instructions do not yet exist for the customer, new funding instructions will be * created. If funding instructions have already been created for a given customer, * the same funding instructions will be retrieved. In other words, we will return * the same funding instructions each time. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\FundingInstructions */ public function createFundingInstructions($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/funding_instructions', $id), $params, $opts); } /** * When you create a new credit card, you must specify a customer or recipient on * which to create it. * * If the card’s owner has no default card, then the new card will become the * default. However, if the owner already has a default, then it will not change. * To change the default, you should <a href="/docs/api#update_customer">update the * customer</a> to have a new <code>default_source</code>. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function createSource($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/sources', $parentId), $params, $opts); } /** * Creates a new <code>tax_id</code> object for a customer. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxId */ public function createTaxId($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/tax_ids', $parentId), $params, $opts); } /** * Permanently deletes a customer. It cannot be undone. Also immediately cancels * any active subscriptions on the customer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Customer */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/customers/%s', $id), $params, $opts); } /** * Removes the currently applied discount on a customer. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Discount */ public function deleteDiscount($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/customers/%s/discount', $id), $params, $opts); } /** * Delete a specified source for a given customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function deleteSource($parentId, $id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/customers/%s/sources/%s', $parentId, $id), $params, $opts); } /** * Deletes an existing <code>tax_id</code> object. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxId */ public function deleteTaxId($parentId, $id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/customers/%s/tax_ids/%s', $parentId, $id), $params, $opts); } /** * Retrieves a Customer object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Customer */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s', $id), $params, $opts); } /** * Retrieves a specific customer balance transaction that updated the customer’s <a * href="/docs/billing/customer/balance">balances</a>. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CustomerBalanceTransaction */ public function retrieveBalanceTransaction($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/balance_transactions/%s', $parentId, $id), $params, $opts); } /** * Retrieves a customer’s cash balance. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CashBalance */ public function retrieveCashBalance($parentId, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/cash_balance', $parentId), $params, $opts); } /** * Retrieves a specific cash balance transaction, which updated the customer’s <a * href="/docs/payments/customer-balance">cash balance</a>. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CustomerCashBalanceTransaction */ public function retrieveCashBalanceTransaction($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/cash_balance_transactions/%s', $parentId, $id), $params, $opts); } /** * Retrieves a PaymentMethod object for a given Customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PaymentMethod */ public function retrievePaymentMethod($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/payment_methods/%s', $parentId, $id), $params, $opts); } /** * Retrieve a specified source for a given customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function retrieveSource($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/sources/%s', $parentId, $id), $params, $opts); } /** * Retrieves the <code>tax_id</code> object with the given identifier. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\TaxId */ public function retrieveTaxId($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/customers/%s/tax_ids/%s', $parentId, $id), $params, $opts); } /** * Search for customers you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Customer> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/customers/search', $params, $opts); } /** * Updates the specified customer by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. For example, if you pass the * <strong>source</strong> parameter, that becomes the customer’s active source * (e.g., a card) to be used for all charges in the future. When you update a * customer to a new valid card source by passing the <strong>source</strong> * parameter: for each of the customer’s current subscriptions, if the subscription * bills automatically and is in the <code>past_due</code> state, then the latest * open invoice for the subscription with automatic collection enabled will be * retried. This retry will not count as an automatic retry, and will not affect * the next regularly scheduled payment for the invoice. Changing the * <strong>default_source</strong> for a customer will not trigger this behavior. * * This request accepts mostly the same arguments as the customer creation call. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Customer */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s', $id), $params, $opts); } /** * Most credit balance transaction fields are immutable, but you may update its * <code>description</code> and <code>metadata</code>. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CustomerBalanceTransaction */ public function updateBalanceTransaction($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/balance_transactions/%s', $parentId, $id), $params, $opts); } /** * Changes the settings on a customer’s cash balance. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CashBalance */ public function updateCashBalance($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/cash_balance', $parentId), $params, $opts); } /** * Update a specified source for a given customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function updateSource($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/sources/%s', $parentId, $id), $params, $opts); } /** * Verify a specified bank account for a given customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function verifySource($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/customers/%s/sources/%s/verify', $parentId, $id), $params, $opts); } } PlanService.php 0000644 00000005330 15107340776 0007503 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PlanService extends \Stripe\Service\AbstractService { /** * Returns a list of your plans. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Plan> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/plans', $params, $opts); } /** * You can now model subscriptions more flexibly using the <a href="#prices">Prices * API</a>. It replaces the Plans API and is backwards compatible to simplify your * migration. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Plan */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/plans', $params, $opts); } /** * Deleting plans means new subscribers can’t be added. Existing subscribers aren’t * affected. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Plan */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/plans/%s', $id), $params, $opts); } /** * Retrieves the plan with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Plan */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/plans/%s', $id), $params, $opts); } /** * Updates the specified plan by setting the values of the parameters passed. Any * parameters not provided are left unchanged. By design, you cannot change a * plan’s ID, amount, currency, or billing cycle. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Plan */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/plans/%s', $id), $params, $opts); } } PriceService.php 0000644 00000005636 15107340777 0007665 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PriceService extends \Stripe\Service\AbstractService { /** * Returns a list of your prices. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Price> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/prices', $params, $opts); } /** * Creates a new price for an existing product. The price can be recurring or * one-time. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Price */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/prices', $params, $opts); } /** * Retrieves the price with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Price */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/prices/%s', $id), $params, $opts); } /** * Search for prices you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Price> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/prices/search', $params, $opts); } /** * Updates the specified price by setting the values of the parameters passed. Any * parameters not provided are left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Price */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/prices/%s', $id), $params, $opts); } } EphemeralKeyService.php 0000644 00000002411 15107340777 0011162 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class EphemeralKeyService extends \Stripe\Service\AbstractService { /** * Invalidates a short-lived API key for a given resource. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\EphemeralKey */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/ephemeral_keys/%s', $id), $params, $opts); } /** * Creates a short-lived API key for a given resource. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\EphemeralKey */ public function create($params = null, $opts = null) { if (!$opts || !isset($opts['stripe_version'])) { throw new \Stripe\Exception\InvalidArgumentException('stripe_version must be specified to create an ephemeral key'); } return $this->request('post', '/v1/ephemeral_keys', $params, $opts); } } ApplicationFeeService.php 0000644 00000011252 15107341000 0011451 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ApplicationFeeService extends \Stripe\Service\AbstractService { /** * Returns a list of application fees you’ve previously collected. The application * fees are returned in sorted order, with the most recent fees appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\ApplicationFee> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/application_fees', $params, $opts); } /** * You can see a list of the refunds belonging to a specific application fee. Note * that the 10 most recent refunds are always available by default on the * application fee object. If you need more than those 10, you can use this API * method and the <code>limit</code> and <code>starting_after</code> parameters to * page through additional refunds. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\ApplicationFeeRefund> */ public function allRefunds($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/application_fees/%s/refunds', $parentId), $params, $opts); } /** * Refunds an application fee that has previously been collected but not yet * refunded. Funds will be refunded to the Stripe account from which the fee was * originally collected. * * You can optionally refund only part of an application fee. You can do so * multiple times, until the entire fee has been refunded. * * Once entirely refunded, an application fee can’t be refunded again. This method * will raise an error when called on an already-refunded application fee, or when * trying to refund more money than is left on an application fee. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplicationFeeRefund */ public function createRefund($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/application_fees/%s/refunds', $parentId), $params, $opts); } /** * Retrieves the details of an application fee that your account has collected. The * same information is returned when refunding the application fee. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplicationFee */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/application_fees/%s', $id), $params, $opts); } /** * By default, you can see the 10 most recent refunds stored directly on the * application fee object, but you can also retrieve details about a specific * refund stored on the application fee. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplicationFeeRefund */ public function retrieveRefund($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/application_fees/%s/refunds/%s', $parentId, $id), $params, $opts); } /** * Updates the specified application fee refund by setting the values of the * parameters passed. Any parameters not provided will be left unchanged. * * This request only accepts metadata as an argument. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ApplicationFeeRefund */ public function updateRefund($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/application_fees/%s/refunds/%s', $parentId, $id), $params, $opts); } } SourceService.php 0000644 00000007100 15107341001 0010024 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SourceService extends \Stripe\Service\AbstractService { /** * List source transactions for a given source. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\SourceTransaction> */ public function allSourceTransactions($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/sources/%s/source_transactions', $id), $params, $opts); } /** * Creates a new source object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Source */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/sources', $params, $opts); } /** * Delete a specified source for a given customer. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source */ public function detach($parentId, $id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/customers/%s/sources/%s', $parentId, $id), $params, $opts); } /** * Retrieves an existing source object. Supply the unique source ID from a source * creation request and Stripe will return the corresponding up-to-date source * object information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Source */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/sources/%s', $id), $params, $opts); } /** * Updates the specified source by setting the values of the parameters passed. Any * parameters not provided will be left unchanged. * * This request accepts the <code>metadata</code> and <code>owner</code> as * arguments. It is also possible to update type specific information for selected * payment methods. Please refer to our <a href="/docs/sources">payment method * guides</a> for more detail. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Source */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/sources/%s', $id), $params, $opts); } /** * Verify a given source. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Source */ public function verify($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/sources/%s/verify', $id), $params, $opts); } } ProductService.php 0000644 00000007464 15107341002 0010222 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ProductService extends \Stripe\Service\AbstractService { /** * Returns a list of your products. The products are returned sorted by creation * date, with the most recently created products appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Product> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/products', $params, $opts); } /** * Creates a new product object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Product */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/products', $params, $opts); } /** * Delete a product. Deleting a product is only possible if it has no prices * associated with it. Additionally, deleting a product with <code>type=good</code> * is only possible if it has no SKUs associated with it. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Product */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/products/%s', $id), $params, $opts); } /** * Retrieves the details of an existing product. Supply the unique product ID from * either a product creation request or the product list, and Stripe will return * the corresponding product information. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Product */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/products/%s', $id), $params, $opts); } /** * Search for products you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Product> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/products/search', $params, $opts); } /** * Updates the specific product by setting the values of the parameters passed. Any * parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Product */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/products/%s', $id), $params, $opts); } } PromotionCodeService.php 0000644 00000004554 15107341002 0011360 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class PromotionCodeService extends \Stripe\Service\AbstractService { /** * Returns a list of your promotion codes. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\PromotionCode> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/promotion_codes', $params, $opts); } /** * A promotion code points to a coupon. You can optionally restrict the code to a * specific customer, redemption limit, and expiration date. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PromotionCode */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/promotion_codes', $params, $opts); } /** * Retrieves the promotion code with the given ID. In order to retrieve a promotion * code by the customer-facing <code>code</code> use <a * href="/docs/api/promotion_codes/list">list</a> with the desired * <code>code</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PromotionCode */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/promotion_codes/%s', $id), $params, $opts); } /** * Updates the specified promotion code by setting the values of the parameters * passed. Most fields are, by design, not editable. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\PromotionCode */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/promotion_codes/%s', $id), $params, $opts); } } RefundService.php 0000644 00000007103 15107341003 0010014 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class RefundService extends \Stripe\Service\AbstractService { /** * Returns a list of all refunds you created. We return the refunds in sorted * order, with the most recent refunds appearing first The 10 most recent refunds * are always available by default on the Charge object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Refund> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/refunds', $params, $opts); } /** * Cancels a refund with a status of <code>requires_action</code>. * * You can’t cancel refunds in other states. Only refunds for payment methods that * require customer action can enter the <code>requires_action</code> state. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Refund */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/refunds/%s/cancel', $id), $params, $opts); } /** * When you create a new refund, you must specify a Charge or a PaymentIntent * object on which to create it. * * Creating a new refund will refund a charge that has previously been created but * not yet refunded. Funds will be refunded to the credit or debit card that was * originally charged. * * You can optionally refund only part of a charge. You can do so multiple times, * until the entire charge has been refunded. * * Once entirely refunded, a charge can’t be refunded again. This method will raise * an error when called on an already-refunded charge, or when trying to refund * more money than is left on a charge. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Refund */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/refunds', $params, $opts); } /** * Retrieves the details of an existing refund. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Refund */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/refunds/%s', $id), $params, $opts); } /** * Updates the refund that you specify by setting the values of the passed * parameters. Any parameters that you don’t provide remain unchanged. * * This request only accepts <code>metadata</code> as an argument. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Refund */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/refunds/%s', $id), $params, $opts); } } SubscriptionScheduleService.php 0000644 00000007675 15107341004 0012751 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class SubscriptionScheduleService extends \Stripe\Service\AbstractService { /** * Retrieves the list of your subscription schedules. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\SubscriptionSchedule> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/subscription_schedules', $params, $opts); } /** * Cancels a subscription schedule and its associated subscription immediately (if * the subscription schedule has an active subscription). A subscription schedule * can only be canceled if its status is <code>not_started</code> or * <code>active</code>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionSchedule */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscription_schedules/%s/cancel', $id), $params, $opts); } /** * Creates a new subscription schedule object. Each customer can have up to 500 * active or scheduled subscriptions. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionSchedule */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/subscription_schedules', $params, $opts); } /** * Releases the subscription schedule immediately, which will stop scheduling of * its phases, but leave any existing subscription in place. A schedule can only be * released if its status is <code>not_started</code> or <code>active</code>. If * the subscription schedule is currently associated with a subscription, releasing * it will remove its <code>subscription</code> property and set the subscription’s * ID to the <code>released_subscription</code> property. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionSchedule */ public function release($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscription_schedules/%s/release', $id), $params, $opts); } /** * Retrieves the details of an existing subscription schedule. You only need to * supply the unique subscription schedule identifier that was returned upon * subscription schedule creation. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionSchedule */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/subscription_schedules/%s', $id), $params, $opts); } /** * Updates an existing subscription schedule. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SubscriptionSchedule */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/subscription_schedules/%s', $id), $params, $opts); } } AbstractService.php 0000644 00000006030 15107341004 0010333 0 ustar 00 <?php namespace Stripe\Service; /** * Abstract base class for all services. */ abstract class AbstractService { /** * @var \Stripe\StripeClientInterface */ protected $client; /** * @var \Stripe\StripeStreamingClientInterface */ protected $streamingClient; /** * Initializes a new instance of the {@link AbstractService} class. * * @param \Stripe\StripeClientInterface $client */ public function __construct($client) { $this->client = $client; $this->streamingClient = $client; } /** * Gets the client used by this service to send requests. * * @return \Stripe\StripeClientInterface */ public function getClient() { return $this->client; } /** * Gets the client used by this service to send requests. * * @return \Stripe\StripeStreamingClientInterface */ public function getStreamingClient() { return $this->streamingClient; } /** * Translate null values to empty strings. For service methods, * we interpret null as a request to unset the field, which * corresponds to sending an empty string for the field to the * API. * * @param null|array $params */ private static function formatParams($params) { if (null === $params) { return null; } \array_walk_recursive($params, function (&$value, $key) { if (null === $value) { $value = ''; } }); return $params; } protected function request($method, $path, $params, $opts) { return $this->getClient()->request($method, $path, self::formatParams($params), $opts); } protected function requestStream($method, $path, $readBodyChunkCallable, $params, $opts) { // TODO (MAJOR): Add this method to StripeClientInterface // @phpstan-ignore-next-line return $this->getStreamingClient()->requestStream($method, $path, $readBodyChunkCallable, self::formatParams($params), $opts); } protected function requestCollection($method, $path, $params, $opts) { // TODO (MAJOR): Add this method to StripeClientInterface // @phpstan-ignore-next-line return $this->getClient()->requestCollection($method, $path, self::formatParams($params), $opts); } protected function requestSearchResult($method, $path, $params, $opts) { // TODO (MAJOR): Add this method to StripeClientInterface // @phpstan-ignore-next-line return $this->getClient()->requestSearchResult($method, $path, self::formatParams($params), $opts); } protected function buildPath($basePath, ...$ids) { foreach ($ids as $id) { if (null === $id || '' === \trim($id)) { $msg = 'The resource ID cannot be null or whitespace.'; throw new \Stripe\Exception\InvalidArgumentException($msg); } } return \sprintf($basePath, ...\array_map('\urlencode', $ids)); } } ChargeService.php 0000644 00000010671 15107341005 0007770 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ChargeService extends \Stripe\Service\AbstractService { /** * Returns a list of charges you’ve previously created. The charges are returned in * sorted order, with the most recent charges appearing first. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Charge> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/charges', $params, $opts); } /** * Capture the payment of an existing, uncaptured charge that was created with the * <code>capture</code> option set to false. * * Uncaptured payments expire a set number of days after they are created (<a * href="/docs/charges/placing-a-hold">7 by default</a>), after which they are * marked as refunded and capture attempts will fail. * * Don’t use this method to capture a PaymentIntent-initiated charge. Use <a * href="/docs/api/payment_intents/capture">Capture a PaymentIntent</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Charge */ public function capture($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/charges/%s/capture', $id), $params, $opts); } /** * Use the <a href="/docs/api/payment_intents">Payment Intents API</a> to initiate * a new payment instead of using this method. Confirmation of the PaymentIntent * creates the <code>Charge</code> object used to request payment, so this method * is limited to legacy integrations. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Charge */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/charges', $params, $opts); } /** * Retrieves the details of a charge that has previously been created. Supply the * unique charge ID that was returned from your previous request, and Stripe will * return the corresponding charge information. The same information is returned * when creating or refunding the charge. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Charge */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/charges/%s', $id), $params, $opts); } /** * Search for charges you’ve previously created using Stripe’s <a * href="/docs/search#search-query-language">Search Query Language</a>. Don’t use * search in read-after-write flows where strict consistency is necessary. Under * normal operating conditions, data is searchable in less than a minute. * Occasionally, propagation of new or updated data can be up to an hour behind * during outages. Search functionality is not available to merchants in India. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\SearchResult<\Stripe\Charge> */ public function search($params = null, $opts = null) { return $this->requestSearchResult('get', '/v1/charges/search', $params, $opts); } /** * Updates the specified charge by setting the values of the parameters passed. Any * parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Charge */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/charges/%s', $id), $params, $opts); } } AccountSessionService.php 0000644 00000001263 15107341006 0011535 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class AccountSessionService extends \Stripe\Service\AbstractService { /** * Creates a AccountSession object that includes a single-use token that the * platform can use on their front-end to grant client-side API access. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\AccountSession */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/account_sessions', $params, $opts); } } WebhookEndpointService.php 0000644 00000006475 15107341007 0011707 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class WebhookEndpointService extends \Stripe\Service\AbstractService { /** * Returns a list of your webhook endpoints. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\WebhookEndpoint> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/webhook_endpoints', $params, $opts); } /** * A webhook endpoint must have a <code>url</code> and a list of * <code>enabled_events</code>. You may optionally specify the Boolean * <code>connect</code> parameter. If set to true, then a Connect webhook endpoint * that notifies the specified <code>url</code> about events from all connected * accounts is created; otherwise an account webhook endpoint that notifies the * specified <code>url</code> only about events from your account is created. You * can also create webhook endpoints in the <a * href="https://dashboard.stripe.com/account/webhooks">webhooks settings</a> * section of the Dashboard. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\WebhookEndpoint */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/webhook_endpoints', $params, $opts); } /** * You can also delete webhook endpoints via the <a * href="https://dashboard.stripe.com/account/webhooks">webhook endpoint * management</a> page of the Stripe dashboard. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\WebhookEndpoint */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/webhook_endpoints/%s', $id), $params, $opts); } /** * Retrieves the webhook endpoint with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\WebhookEndpoint */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/webhook_endpoints/%s', $id), $params, $opts); } /** * Updates the webhook endpoint. You may edit the <code>url</code>, the list of * <code>enabled_events</code>, and the status of your endpoint. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\WebhookEndpoint */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/webhook_endpoints/%s', $id), $params, $opts); } } CreditNoteService.php 0000644 00000013057 15107341010 0010634 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class CreditNoteService extends \Stripe\Service\AbstractService { /** * Returns a list of credit notes. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CreditNote> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/credit_notes', $params, $opts); } /** * When retrieving a credit note, you’ll get a <strong>lines</strong> property * containing the the first handful of those items. There is also a URL where you * can retrieve the full (paginated) list of line items. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CreditNoteLineItem> */ public function allLines($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/credit_notes/%s/lines', $parentId), $params, $opts); } /** * Issue a credit note to adjust the amount of a finalized invoice. For a * <code>status=open</code> invoice, a credit note reduces its * <code>amount_due</code>. For a <code>status=paid</code> invoice, a credit note * does not affect its <code>amount_due</code>. Instead, it can result in any * combination of the following:. * * <ul> <li>Refund: create a new refund (using <code>refund_amount</code>) or link * an existing refund (using <code>refund</code>).</li> <li>Customer balance * credit: credit the customer’s balance (using <code>credit_amount</code>) which * will be automatically applied to their next invoice when it’s finalized.</li> * <li>Outside of Stripe credit: record the amount that is or will be credited * outside of Stripe (using <code>out_of_band_amount</code>).</li> </ul> * * For post-payment credit notes the sum of the refund, credit and outside of * Stripe amounts must equal the credit note total. * * You may issue multiple credit notes for an invoice. Each credit note will * increment the invoice’s <code>pre_payment_credit_notes_amount</code> or * <code>post_payment_credit_notes_amount</code> depending on its * <code>status</code> at the time of credit note creation. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CreditNote */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/credit_notes', $params, $opts); } /** * Get a preview of a credit note without creating it. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CreditNote */ public function preview($params = null, $opts = null) { return $this->request('get', '/v1/credit_notes/preview', $params, $opts); } /** * When retrieving a credit note preview, you’ll get a <strong>lines</strong> * property containing the first handful of those items. This URL you can retrieve * the full (paginated) list of line items. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\CreditNoteLineItem> */ public function previewLines($params = null, $opts = null) { return $this->requestCollection('get', '/v1/credit_notes/preview/lines', $params, $opts); } /** * Retrieves the credit note object with the given identifier. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CreditNote */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/credit_notes/%s', $id), $params, $opts); } /** * Updates an existing credit note. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CreditNote */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/credit_notes/%s', $id), $params, $opts); } /** * Marks a credit note as void. Learn more about <a * href="/docs/billing/invoices/credit-notes#voiding">voiding credit notes</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\CreditNote */ public function voidCreditNote($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/credit_notes/%s/void', $id), $params, $opts); } } DisputeService.php 0000644 00000005501 15107341010 0010204 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class DisputeService extends \Stripe\Service\AbstractService { /** * Returns a list of your disputes. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Dispute> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/disputes', $params, $opts); } /** * Closing the dispute for a charge indicates that you do not have any evidence to * submit and are essentially dismissing the dispute, acknowledging it as lost. * * The status of the dispute will change from <code>needs_response</code> to * <code>lost</code>. <em>Closing a dispute is irreversible</em>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Dispute */ public function close($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/disputes/%s/close', $id), $params, $opts); } /** * Retrieves the dispute with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Dispute */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/disputes/%s', $id), $params, $opts); } /** * When you get a dispute, contacting your customer is always the best first step. * If that doesn’t work, you can submit evidence to help us resolve the dispute in * your favor. You can do this in your <a * href="https://dashboard.stripe.com/disputes">dashboard</a>, but if you prefer, * you can use the API to submit evidence programmatically. * * Depending on your dispute type, different evidence fields will give you a better * chance of winning your dispute. To figure out which evidence fields to provide, * see our <a href="/docs/disputes/categories">guide to dispute types</a>. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Dispute */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/disputes/%s', $id), $params, $opts); } } EventService.php 0000644 00000002637 15107341011 0007660 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class EventService extends \Stripe\Service\AbstractService { /** * List events, going back up to 30 days. Each event data is rendered according to * Stripe API version at its creation time, specified in <a * href="/docs/api/events/object">event object</a> <code>api_version</code> * attribute (not according to your current Stripe API version or * <code>Stripe-Version</code> header). * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Event> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/events', $params, $opts); } /** * Retrieves the details of an event. Supply the unique identifier of the event, * which you might have received in a webhook. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Event */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/events/%s', $id), $params, $opts); } } ShippingRateService.php 0000644 00000003740 15107341012 0011171 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class ShippingRateService extends \Stripe\Service\AbstractService { /** * Returns a list of your shipping rates. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\ShippingRate> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/shipping_rates', $params, $opts); } /** * Creates a new shipping rate object. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ShippingRate */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/shipping_rates', $params, $opts); } /** * Returns the shipping rate object with the given ID. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ShippingRate */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/shipping_rates/%s', $id), $params, $opts); } /** * Updates an existing shipping rate object. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\ShippingRate */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/shipping_rates/%s', $id), $params, $opts); } } AccountService.php 0000644 00000034025 15107341013 0010171 0 ustar 00 <?php // File generated from our OpenAPI spec namespace Stripe\Service; class AccountService extends \Stripe\Service\AbstractService { /** * Returns a list of accounts connected to your platform via <a * href="/docs/connect">Connect</a>. If you’re not a platform, the list is empty. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Account> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/accounts', $params, $opts); } /** * Returns a list of capabilities associated with the account. The capabilities are * returned sorted by creation date, with the most recent capability appearing * first. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Capability> */ public function allCapabilities($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/accounts/%s/capabilities', $parentId), $params, $opts); } /** * List external accounts for an account. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\BankAccount|\Stripe\Card> */ public function allExternalAccounts($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/accounts/%s/external_accounts', $parentId), $params, $opts); } /** * Returns a list of people associated with the account’s legal entity. The people * are returned sorted by creation date, with the most recent people appearing * first. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Collection<\Stripe\Person> */ public function allPersons($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/accounts/%s/persons', $parentId), $params, $opts); } /** * With <a href="/docs/connect">Connect</a>, you can create Stripe accounts for * your users. To do this, you’ll first need to <a * href="https://dashboard.stripe.com/account/applications/settings">register your * platform</a>. * * If you’ve already collected information for your connected accounts, you <a * href="/docs/connect/best-practices#onboarding">can prefill that information</a> * when creating the account. Connect Onboarding won’t ask for the prefilled * information during account onboarding. You can prefill any information on the * account. * * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/accounts', $params, $opts); } /** * Create an external account for a given account. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BankAccount|\Stripe\Card */ public function createExternalAccount($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/external_accounts', $parentId), $params, $opts); } /** * Creates a single-use login link for an Express account to access their Stripe * dashboard. * * <strong>You may only create login links for <a * href="/docs/connect/express-accounts">Express accounts</a> connected to your * platform</strong>. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\LoginLink */ public function createLoginLink($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/login_links', $parentId), $params, $opts); } /** * Creates a new person. * * @param string $parentId * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Person */ public function createPerson($parentId, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/persons', $parentId), $params, $opts); } /** * With <a href="/docs/connect">Connect</a>, you can delete accounts you manage. * * Accounts created using test-mode keys can be deleted at any time. Standard * accounts created using live-mode keys cannot be deleted. Custom or Express * accounts created using live-mode keys can only be deleted once all balances are * zero. * * If you want to delete your own account, use the <a * href="https://dashboard.stripe.com/settings/account">account information tab in * your account settings</a> instead. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account */ public function delete($id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/accounts/%s', $id), $params, $opts); } /** * Delete a specified external account for a given account. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BankAccount|\Stripe\Card */ public function deleteExternalAccount($parentId, $id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/accounts/%s/external_accounts/%s', $parentId, $id), $params, $opts); } /** * Deletes an existing person’s relationship to the account’s legal entity. Any * person with a relationship for an account can be deleted through the API, except * if the person is the <code>account_opener</code>. If your integration is using * the <code>executive</code> parameter, you cannot delete the only verified * <code>executive</code> on file. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Person */ public function deletePerson($parentId, $id, $params = null, $opts = null) { return $this->request('delete', $this->buildPath('/v1/accounts/%s/persons/%s', $parentId, $id), $params, $opts); } /** * With <a href="/docs/connect">Connect</a>, you may flag accounts as suspicious. * * Test-mode Custom and Express accounts can be rejected at any time. Accounts * created using live-mode keys may only be rejected once all balances are zero. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account */ public function reject($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/reject', $id), $params, $opts); } /** * Retrieves information about the specified Account Capability. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Capability */ public function retrieveCapability($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/accounts/%s/capabilities/%s', $parentId, $id), $params, $opts); } /** * Retrieve a specified external account for a given account. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BankAccount|\Stripe\Card */ public function retrieveExternalAccount($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/accounts/%s/external_accounts/%s', $parentId, $id), $params, $opts); } /** * Retrieves an existing person. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Person */ public function retrievePerson($parentId, $id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/accounts/%s/persons/%s', $parentId, $id), $params, $opts); } /** * Updates a <a href="/docs/connect/accounts">connected account</a> by setting the * values of the parameters passed. Any parameters not provided are left unchanged. * * For Custom accounts, you can update any information on the account. For other * accounts, you can update all information until that account has started to go * through Connect Onboarding. Once you create an <a * href="/docs/api/account_links">Account Link</a> for a Standard or Express * account, some parameters can no longer be changed. These are marked as * <strong>Custom Only</strong> or <strong>Custom and Express</strong> below. * * To update your own account, use the <a * href="https://dashboard.stripe.com/settings/account">Dashboard</a>. Refer to our * <a href="/docs/connect/updating-accounts">Connect</a> documentation to learn * more about updating accounts. * * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s', $id), $params, $opts); } /** * Updates an existing Account Capability. Request or remove a capability by * updating its <code>requested</code> parameter. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Capability */ public function updateCapability($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/capabilities/%s', $parentId, $id), $params, $opts); } /** * Updates the metadata, account holder name, account holder type of a bank account * belonging to a <a href="/docs/connect/custom-accounts">Custom account</a>, and * optionally sets it as the default for its currency. Other bank account details * are not editable by design. * * You can re-enable a disabled bank account by performing an update call without * providing any arguments or changes. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\BankAccount|\Stripe\Card */ public function updateExternalAccount($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/external_accounts/%s', $parentId, $id), $params, $opts); } /** * Updates an existing person. * * @param string $parentId * @param string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Person */ public function updatePerson($parentId, $id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/accounts/%s/persons/%s', $parentId, $id), $params, $opts); } /** * Retrieves the details of an account. * * @param null|string $id * @param null|array $params * @param null|array|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Account */ public function retrieve($id = null, $params = null, $opts = null) { if (null === $id) { return $this->request('get', '/v1/account', $params, $opts); } return $this->request('get', $this->buildPath('/v1/accounts/%s', $id), $params, $opts); } }
Simpan