ApiOperations
6 years ago
Checkout
6 years ago
Error
6 years ago
HttpClient
6 years ago
Issuing
6 years ago
Radar
6 years ago
Reporting
6 years ago
Sigma
6 years ago
Terminal
6 years ago
Util
6 years ago
Account.php
6 years ago
AccountLink.php
6 years ago
AlipayAccount.php
6 years ago
ApiRequestor.php
6 years ago
ApiResource.php
6 years ago
ApiResponse.php
6 years ago
ApplePayDomain.php
6 years ago
ApplicationFee.php
6 years ago
ApplicationFeeRefund.php
6 years ago
Balance.php
6 years ago
BalanceTransaction.php
6 years ago
BankAccount.php
6 years ago
BitcoinReceiver.php
6 years ago
BitcoinTransaction.php
6 years ago
Capability.php
6 years ago
Card.php
6 years ago
Charge.php
6 years ago
Collection.php
6 years ago
CountrySpec.php
6 years ago
Coupon.php
6 years ago
CreditNote.php
6 years ago
Customer.php
6 years ago
CustomerBalanceTransaction.php
6 years ago
Discount.php
6 years ago
Dispute.php
6 years ago
EphemeralKey.php
6 years ago
Event.php
6 years ago
ExchangeRate.php
6 years ago
File.php
6 years ago
FileLink.php
6 years ago
FileUpload.php
6 years ago
Invoice.php
6 years ago
InvoiceItem.php
6 years ago
InvoiceLineItem.php
6 years ago
IssuerFraudRecord.php
6 years ago
LoginLink.php
6 years ago
OAuth.php
6 years ago
Order.php
6 years ago
OrderItem.php
6 years ago
OrderReturn.php
6 years ago
PaymentIntent.php
6 years ago
PaymentMethod.php
6 years ago
Payout.php
6 years ago
Person.php
6 years ago
Plan.php
6 years ago
Product.php
6 years ago
Recipient.php
6 years ago
RecipientTransfer.php
6 years ago
Refund.php
6 years ago
RequestTelemetry.php
6 years ago
Review.php
6 years ago
SKU.php
6 years ago
SetupIntent.php
6 years ago
SingletonApiResource.php
6 years ago
Source.php
6 years ago
SourceTransaction.php
6 years ago
Stripe.php
6 years ago
StripeObject.php
6 years ago
Subscription.php
6 years ago
SubscriptionItem.php
6 years ago
SubscriptionSchedule.php
6 years ago
TaxId.php
6 years ago
TaxRate.php
6 years ago
ThreeDSecure.php
6 years ago
Token.php
6 years ago
Topup.php
6 years ago
Transfer.php
6 years ago
TransferReversal.php
6 years ago
UsageRecord.php
6 years ago
UsageRecordSummary.php
6 years ago
Webhook.php
6 years ago
WebhookEndpoint.php
6 years ago
WebhookSignature.php
6 years ago
ApplicationFee.php
98 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class ApplicationFee |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property string $account |
| 11 | * @property int $amount |
| 12 | * @property int $amount_refunded |
| 13 | * @property string $application |
| 14 | * @property string $balance_transaction |
| 15 | * @property string $charge |
| 16 | * @property int $created |
| 17 | * @property string $currency |
| 18 | * @property bool $livemode |
| 19 | * @property string $originating_transaction |
| 20 | * @property bool $refunded |
| 21 | * @property Collection $refunds |
| 22 | * |
| 23 | * @package Stripe |
| 24 | */ |
| 25 | class ApplicationFee extends ApiResource |
| 26 | { |
| 27 | const OBJECT_NAME = "application_fee"; |
| 28 | |
| 29 | use ApiOperations\All; |
| 30 | use ApiOperations\NestedResource; |
| 31 | use ApiOperations\Retrieve; |
| 32 | |
| 33 | const PATH_REFUNDS = '/refunds'; |
| 34 | |
| 35 | /** |
| 36 | * @param array|null $params |
| 37 | * @param array|string|null $opts |
| 38 | * |
| 39 | * @return ApplicationFee The refunded application fee. |
| 40 | */ |
| 41 | public function refund($params = null, $opts = null) |
| 42 | { |
| 43 | $this->refunds->create($params, $opts); |
| 44 | $this->refresh(); |
| 45 | return $this; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * @param string|null $id The ID of the application fee on which to create the refund. |
| 50 | * @param array|null $params |
| 51 | * @param array|string|null $opts |
| 52 | * |
| 53 | * @return ApplicationFeeRefund |
| 54 | */ |
| 55 | public static function createRefund($id, $params = null, $opts = null) |
| 56 | { |
| 57 | return self::_createNestedResource($id, static::PATH_REFUNDS, $params, $opts); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * @param string|null $id The ID of the application fee to which the refund belongs. |
| 62 | * @param array|null $refundId The ID of the refund to retrieve. |
| 63 | * @param array|null $params |
| 64 | * @param array|string|null $opts |
| 65 | * |
| 66 | * @return ApplicationFeeRefund |
| 67 | */ |
| 68 | public static function retrieveRefund($id, $refundId, $params = null, $opts = null) |
| 69 | { |
| 70 | return self::_retrieveNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * @param string|null $id The ID of the application fee to which the refund belongs. |
| 75 | * @param array|null $refundId The ID of the refund to update. |
| 76 | * @param array|null $params |
| 77 | * @param array|string|null $opts |
| 78 | * |
| 79 | * @return ApplicationFeeRefund |
| 80 | */ |
| 81 | public static function updateRefund($id, $refundId, $params = null, $opts = null) |
| 82 | { |
| 83 | return self::_updateNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * @param string|null $id The ID of the application fee on which to retrieve the refunds. |
| 88 | * @param array|null $params |
| 89 | * @param array|string|null $opts |
| 90 | * |
| 91 | * @return Collection The list of refunds. |
| 92 | */ |
| 93 | public static function allRefunds($id, $params = null, $opts = null) |
| 94 | { |
| 95 | return self::_allNestedResources($id, static::PATH_REFUNDS, $params, $opts); |
| 96 | } |
| 97 | } |
| 98 |