ApiOperations
2 months ago
Apps
2 months ago
Billing
2 months ago
BillingPortal
2 months ago
Checkout
2 months ago
Climate
2 months ago
Entitlements
2 months ago
EventData
2 months ago
Events
2 months ago
Exception
2 months ago
FinancialConnections
2 months ago
Forwarding
2 months ago
HttpClient
2 months ago
Identity
2 months ago
Issuing
2 months ago
Radar
2 months ago
Reporting
2 months ago
Service
2 months ago
Sigma
2 months ago
Tax
2 months ago
Terminal
2 months ago
TestHelpers
2 months ago
Treasury
2 months ago
Util
2 months ago
V2
2 months ago
Account.php
2 months ago
AccountLink.php
2 months ago
AccountSession.php
2 months ago
ApiRequestor.php
2 months ago
ApiResource.php
2 months ago
ApiResponse.php
2 months ago
ApplePayDomain.php
2 months ago
Application.php
2 months ago
ApplicationFee.php
2 months ago
ApplicationFeeRefund.php
2 months ago
Balance.php
2 months ago
BalanceTransaction.php
2 months ago
BankAccount.php
2 months ago
BaseStripeClient.php
2 months ago
BaseStripeClientInterface.php
2 months ago
Capability.php
2 months ago
Card.php
2 months ago
CashBalance.php
2 months ago
Charge.php
2 months ago
Collection.php
2 months ago
ConfirmationToken.php
2 months ago
ConnectCollectionTransfer.php
2 months ago
CountrySpec.php
2 months ago
Coupon.php
2 months ago
CreditNote.php
2 months ago
CreditNoteLineItem.php
2 months ago
Customer.php
2 months ago
CustomerBalanceTransaction.php
2 months ago
CustomerCashBalanceTransaction.php
2 months ago
CustomerSession.php
2 months ago
Discount.php
2 months ago
Dispute.php
2 months ago
EphemeralKey.php
2 months ago
ErrorObject.php
2 months ago
Event.php
2 months ago
ExchangeRate.php
2 months ago
File.php
2 months ago
FileLink.php
2 months ago
FundingInstructions.php
2 months ago
Invoice.php
2 months ago
InvoiceItem.php
2 months ago
InvoiceLineItem.php
2 months ago
InvoiceRenderingTemplate.php
2 months ago
LineItem.php
2 months ago
LoginLink.php
2 months ago
Mandate.php
2 months ago
OAuth.php
2 months ago
OAuthErrorObject.php
2 months ago
PaymentIntent.php
2 months ago
PaymentLink.php
2 months ago
PaymentMethod.php
2 months ago
PaymentMethodConfiguration.php
2 months ago
PaymentMethodDomain.php
2 months ago
Payout.php
2 months ago
Person.php
2 months ago
Plan.php
2 months ago
Price.php
2 months ago
Product.php
2 months ago
ProductFeature.php
2 months ago
PromotionCode.php
2 months ago
Quote.php
2 months ago
Reason.php
2 months ago
RecipientTransfer.php
2 months ago
Refund.php
2 months ago
RelatedObject.php
2 months ago
RequestTelemetry.php
2 months ago
ReserveTransaction.php
2 months ago
Review.php
2 months ago
SearchResult.php
2 months ago
SetupAttempt.php
2 months ago
SetupIntent.php
2 months ago
ShippingRate.php
2 months ago
SingletonApiResource.php
2 months ago
Source.php
2 months ago
SourceMandateNotification.php
2 months ago
SourceTransaction.php
2 months ago
Stripe.php
2 months ago
StripeClient.php
2 months ago
StripeClientInterface.php
2 months ago
StripeObject.php
2 months ago
StripeStreamingClientInterface.php
2 months ago
Subscription.php
2 months ago
SubscriptionItem.php
2 months ago
SubscriptionSchedule.php
2 months ago
TaxCode.php
2 months ago
TaxDeductedAtSource.php
2 months ago
TaxId.php
2 months ago
TaxRate.php
2 months ago
ThinEvent.php
2 months ago
Token.php
2 months ago
Topup.php
2 months ago
Transfer.php
2 months ago
TransferReversal.php
2 months ago
UsageRecord.php
2 months ago
UsageRecordSummary.php
2 months ago
Webhook.php
2 months ago
WebhookEndpoint.php
2 months ago
WebhookSignature.php
2 months ago
ApplicationFee.php
117 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | namespace ProfilePressVendor\Stripe; |
| 5 | |
| 6 | /** |
| 7 | * @property string $id Unique identifier for the object. |
| 8 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 9 | * @property string|\Stripe\Account $account ID of the Stripe account this fee was taken from. |
| 10 | * @property int $amount Amount earned, in cents (or local equivalent). |
| 11 | * @property int $amount_refunded Amount in cents (or local equivalent) refunded (can be less than the amount attribute on the fee if a partial refund was issued) |
| 12 | * @property string|\Stripe\Application $application ID of the Connect application that earned the fee. |
| 13 | * @property null|string|\Stripe\BalanceTransaction $balance_transaction Balance transaction that describes the impact of this collected application fee on your account balance (not including refunds). |
| 14 | * @property string|\Stripe\Charge $charge ID of the charge that the application fee was taken from. |
| 15 | * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. |
| 16 | * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>. |
| 17 | * @property null|\Stripe\StripeObject $fee_source Polymorphic source of the application fee. Includes the ID of the object the application fee was created from. |
| 18 | * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. |
| 19 | * @property null|string|\Stripe\Charge $originating_transaction ID of the corresponding charge on the platform account, if this fee was the result of a charge using the <code>destination</code> parameter. |
| 20 | * @property bool $refunded Whether the fee has been fully refunded. If the fee is only partially refunded, this attribute will still be false. |
| 21 | * @property \Stripe\Collection<\Stripe\ApplicationFeeRefund> $refunds A list of refunds that have been applied to the fee. |
| 22 | */ |
| 23 | class ApplicationFee extends ApiResource |
| 24 | { |
| 25 | const OBJECT_NAME = 'application_fee'; |
| 26 | use ApiOperations\NestedResource; |
| 27 | /** |
| 28 | * Returns a list of application fees you’ve previously collected. The application |
| 29 | * fees are returned in sorted order, with the most recent fees appearing first. |
| 30 | * |
| 31 | * @param null|array $params |
| 32 | * @param null|array|string $opts |
| 33 | * |
| 34 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 35 | * |
| 36 | * @return \Stripe\Collection<\Stripe\ApplicationFee> of ApiResources |
| 37 | */ |
| 38 | public static function all($params = null, $opts = null) |
| 39 | { |
| 40 | $url = static::classUrl(); |
| 41 | return static::_requestPage($url, \ProfilePressVendor\Stripe\Collection::class, $params, $opts); |
| 42 | } |
| 43 | /** |
| 44 | * Retrieves the details of an application fee that your account has collected. The |
| 45 | * same information is returned when refunding the application fee. |
| 46 | * |
| 47 | * @param array|string $id the ID of the API resource to retrieve, or an options array containing an `id` key |
| 48 | * @param null|array|string $opts |
| 49 | * |
| 50 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 51 | * |
| 52 | * @return \Stripe\ApplicationFee |
| 53 | */ |
| 54 | public static function retrieve($id, $opts = null) |
| 55 | { |
| 56 | $opts = \ProfilePressVendor\Stripe\Util\RequestOptions::parse($opts); |
| 57 | $instance = new static($id, $opts); |
| 58 | $instance->refresh(); |
| 59 | return $instance; |
| 60 | } |
| 61 | const PATH_REFUNDS = '/refunds'; |
| 62 | /** |
| 63 | * @param string $id the ID of the application fee on which to retrieve the application fee refunds |
| 64 | * @param null|array $params |
| 65 | * @param null|array|string $opts |
| 66 | * |
| 67 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 68 | * |
| 69 | * @return \Stripe\Collection<\Stripe\ApplicationFeeRefund> the list of application fee refunds |
| 70 | */ |
| 71 | public static function allRefunds($id, $params = null, $opts = null) |
| 72 | { |
| 73 | return self::_allNestedResources($id, static::PATH_REFUNDS, $params, $opts); |
| 74 | } |
| 75 | /** |
| 76 | * @param string $id the ID of the application fee on which to create the application fee refund |
| 77 | * @param null|array $params |
| 78 | * @param null|array|string $opts |
| 79 | * |
| 80 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 81 | * |
| 82 | * @return \Stripe\ApplicationFeeRefund |
| 83 | */ |
| 84 | public static function createRefund($id, $params = null, $opts = null) |
| 85 | { |
| 86 | return self::_createNestedResource($id, static::PATH_REFUNDS, $params, $opts); |
| 87 | } |
| 88 | /** |
| 89 | * @param string $id the ID of the application fee to which the application fee refund belongs |
| 90 | * @param string $refundId the ID of the application fee refund to retrieve |
| 91 | * @param null|array $params |
| 92 | * @param null|array|string $opts |
| 93 | * |
| 94 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 95 | * |
| 96 | * @return \Stripe\ApplicationFeeRefund |
| 97 | */ |
| 98 | public static function retrieveRefund($id, $refundId, $params = null, $opts = null) |
| 99 | { |
| 100 | return self::_retrieveNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); |
| 101 | } |
| 102 | /** |
| 103 | * @param string $id the ID of the application fee to which the application fee refund belongs |
| 104 | * @param string $refundId the ID of the application fee refund to update |
| 105 | * @param null|array $params |
| 106 | * @param null|array|string $opts |
| 107 | * |
| 108 | * @throws \Stripe\Exception\ApiErrorException if the request fails |
| 109 | * |
| 110 | * @return \Stripe\ApplicationFeeRefund |
| 111 | */ |
| 112 | public static function updateRefund($id, $refundId, $params = null, $opts = null) |
| 113 | { |
| 114 | return self::_updateNestedResource($id, static::PATH_REFUNDS, $refundId, $params, $opts); |
| 115 | } |
| 116 | } |
| 117 |