/
home
/
techb158
/
immovalet.com
/
vendor
/
stripe
/
stripe-php
/
lib
/
Service
/
/home/techb158/immovalet.com/vendor/stripe/stripe-php/lib/Service
mkdir
upload
Name
Size
Mode
Actions
BillingPortal/
-
0755
rm
Checkout/
-
0755
rm
Identity/
-
0755
rm
Issuing/
-
0755
rm
Radar/
-
0755
rm
Reporting/
-
0755
rm
Sigma/
-
0755
rm
Terminal/
-
0755
rm
AbstractService.php
2597
0644
edit
dl
rm
AbstractServiceFactory.php
1476
0644
edit
dl
rm
AccountLinkService.php
718
0644
edit
dl
rm
AccountService.php
13478
0644
edit
dl
rm
ApplePayDomainService.php
1957
0644
edit
dl
rm
ApplicationFeeService.php
4724
0644
edit
dl
rm
BalanceService.php
781
0644
edit
dl
rm
BalanceTransactionService.php
1550
0644
edit
dl
rm
ChargeService.php
3579
0644
edit
dl
rm
CoreServiceFactory.php
5567
0644
edit
dl
rm
CountrySpecService.php
1085
0644
edit
dl
rm
CouponService.php
3676
0644
edit
dl
rm
CreditNoteService.php
5603
0644
edit
dl
rm
CustomerService.php
12876
0644
edit
dl
rm
DisputeService.php
2864
0644
edit
dl
rm
EphemeralKeyService.php
1289
0644
edit
dl
rm
EventService.php
1424
0644
edit
dl
rm
ExchangeRateService.php
1243
0644
edit
dl
rm
FileLinkService.php
1976
0644
edit
dl
rm
FileService.php
2091
0644
edit
dl
rm
InvoiceItemService.php
3030
0644
edit
dl
rm
InvoiceService.php
10709
0644
edit
dl
rm
MandateService.php
604
0644
edit
dl
rm
OAuthService.php
4859
0644
edit
dl
rm
OrderReturnService.php
1356
0644
edit
dl
rm
OrderService.php
3526
0644
edit
dl
rm
PaymentIntentService.php
7465
0644
edit
dl
rm
PaymentMethodService.php
4301
0644
edit
dl
rm
PayoutService.php
4674
0644
edit
dl
rm
PlanService.php
2762
0644
edit
dl
rm
PriceService.php
2058
0644
edit
dl
rm
ProductService.php
2968
0644
edit
dl
rm
PromotionCodeService.php
2199
0644
edit
dl
rm
QuoteService.php
5725
0644
edit
dl
rm
RefundService.php
2315
0644
edit
dl
rm
ReviewService.php
1773
0644
edit
dl
rm
SetupAttemptService.php
611
0644
edit
dl
rm
SetupIntentService.php
4460
0644
edit
dl
rm
SkuService.php
2981
0644
edit
dl
rm
SourceService.php
3493
0644
edit
dl
rm
SubscriptionItemService.php
5822
0644
edit
dl
rm
SubscriptionScheduleService.php
3999
0644
edit
dl
rm
SubscriptionService.php
4583
0644
edit
dl
rm
TaxCodeService.php
1271
0644
edit
dl
rm
TaxRateService.php
2026
0644
edit
dl
rm
TokenService.php
1254
0644
edit
dl
rm
TopupService.php
2628
0644
edit
dl
rm
TransferService.php
6338
0644
edit
dl
rm
WebhookEndpointService.php
3364
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/stripe/stripe-php/lib/Service/TransferService.php
(6338B)
<?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 */ 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 */ public function allReversals($parentId, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/transfers/%s/reversals', $parentId), $params, $opts); } /** * @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 cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/transfers/%s/cancel', $id), $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); } }
Save
cmd:
run