PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
downtown-rest-api
/
inc
/
stripe-php
/
lib
<?php namespace Stripe; /** * Class ApplicationFee * * @package Stripe */ class ApplicationFee extends ApiResource { const PATH_REFUNDS = '/refunds'; /** * This is a special case because the application fee endpoint has an * underscore in it. The parent `className` function strips underscores. * * @return string The name of the class. */ public static function className() { return 'application_fee'; } /** * @param array|string $id The ID of the application fee to retrieve, or an * options array containing an `id` key. * @param array|string|null $opts * * @return ApplicationFee */ public static function retrieve($id, $opts = null) { return self::_retrieve($id, $opts); } /** * @param string $id The ID of the application fee to update. * @param array|null $params * @param array|string|null $options * * @return ApplicationFee The updated application fee. */ public static function update($id, $params = null, $options = null) { return self::_update($id, $params, $options); } /** * @param array|null $params * @param array|string|null $opts * * @return Collection of ApplicationFees */ public static function all($params = null, $opts = null) { return self::_all($params, $opts); } /** * @param array|null $params * @param array|string|null $opts * * @return ApplicationFee The refunded application fee. */ public function refund($params = null, $opts = null) { $this->refunds->create($params, $opts); $this->refresh(); return $this; } /** * @param array|null $id The ID of the application fee on which to create the refund. * @param array|null $params * @param array|string|null $opts * * @return ApplicationFeeRefund */ public static function createRefund($id, $params = null, $opts = null) { return self::_createNestedResource($id, static::PATH_REFUNDS, $params, $opts); } /** * @param array|null $id The ID of the application fee to which the refund belongs. * @param array|null $refundId The ID of the refund to retrieve. * @param array|null $params * @param array|string|null $opts * * @return ApplicationFeeRefund */ public static function retrieveRefund($id, $refundId, $params = null, $opts = null) { return self::_retrieveNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); } /** * @param array|null $id The ID of the application fee to which the refund belongs. * @param array|null $refundId The ID of the refund to update. * @param array|null $params * @param array|string|null $opts * * @return ApplicationFeeRefund */ public static function updateRefund($id, $refundId, $params = null, $opts = null) { return self::_updateNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); } /** * @param array|null $id The ID of the application fee on which to retrieve the refunds. * @param array|null $params * @param array|string|null $opts * * @return ApplicationFeeRefund */ public static function allRefunds($id, $params = null, $opts = null) { return self::_allNestedResources($id, static::PATH_REFUNDS, $params, $opts); } }
[+]
..
[-] WebhookSignature.php
[edit]
[-] BitcoinReceiver.php
[edit]
[+]
HttpClient
[-] Collection.php
[edit]
[-] ThreeDSecure.php
[edit]
[-] Webhook.php
[edit]
[-] JsonSerializable.php
[edit]
[-] Order.php
[edit]
[-] BalanceTransaction.php
[edit]
[-] Product.php
[edit]
[-] Subscription.php
[edit]
[-] Token.php
[edit]
[-] Event.php
[edit]
[-] SKU.php
[edit]
[-] Recipient.php
[edit]
[-] Invoice.php
[edit]
[-] SubscriptionItem.php
[edit]
[-] SourceTransaction.php
[edit]
[+]
Error
[-] Stripe.php
[edit]
[-] BankAccount.php
[edit]
[-] Coupon.php
[edit]
[-] OAuth.php
[edit]
[-] RecipientTransfer.php
[edit]
[-] AlipayAccount.php
[edit]
[-] ApiResponse.php
[edit]
[-] Dispute.php
[edit]
[-] BitcoinTransaction.php
[edit]
[-] SingletonApiResource.php
[edit]
[-] InvoiceItem.php
[edit]
[-] ApplicationFeeRefund.php
[edit]
[-] FileUpload.php
[edit]
[-] ExchangeRate.php
[edit]
[-] OrderReturn.php
[edit]
[+]
Util
[-] ApplePayDomain.php
[edit]
[-] ApiRequestor.php
[edit]
[-] ApplicationFee.php
[edit]
[-] Plan.php
[edit]
[-] Transfer.php
[edit]
[-] CountrySpec.php
[edit]
[-] Payout.php
[edit]
[-] ExternalAccount.php
[edit]
[-] AttachedObject.php
[edit]
[-] Balance.php
[edit]
[-] Card.php
[edit]
[-] Refund.php
[edit]
[-] StripeObject.php
[edit]
[-] LoginLink.php
[edit]
[-] Account.php
[edit]
[-] EphemeralKey.php
[edit]
[-] ApiResource.php
[edit]
[-] Charge.php
[edit]
[-] TransferReversal.php
[edit]
[-] Customer.php
[edit]
[-] Source.php
[edit]