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
BalanceTransaction.php
66 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class BalanceTransaction |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property int $amount |
| 11 | * @property int $available_on |
| 12 | * @property int $created |
| 13 | * @property string $currency |
| 14 | * @property string $description |
| 15 | * @property float $exchange_rate |
| 16 | * @property int $fee |
| 17 | * @property mixed $fee_details |
| 18 | * @property int $net |
| 19 | * @property string $source |
| 20 | * @property string $status |
| 21 | * @property string $type |
| 22 | * |
| 23 | * @package Stripe |
| 24 | */ |
| 25 | class BalanceTransaction extends ApiResource |
| 26 | { |
| 27 | const OBJECT_NAME = "balance_transaction"; |
| 28 | |
| 29 | use ApiOperations\All; |
| 30 | use ApiOperations\Retrieve; |
| 31 | |
| 32 | /** |
| 33 | * Possible string representations of the type of balance transaction. |
| 34 | * @link https://stripe.com/docs/api/balance/balance_transaction#balance_transaction_object-type |
| 35 | */ |
| 36 | const TYPE_ADJUSTMENT = 'adjustment'; |
| 37 | const TYPE_ADVANCE = 'advance'; |
| 38 | const TYPE_ADVANCE_FUNDING = 'advance_funding'; |
| 39 | const TYPE_APPLICATION_FEE = 'application_fee'; |
| 40 | const TYPE_APPLICATION_FEE_REFUND = 'application_fee_refund'; |
| 41 | const TYPE_CHARGE = 'charge'; |
| 42 | const TYPE_CONNECT_COLLECTION_TRANSFER = 'connect_collection_transfer'; |
| 43 | const TYPE_ISSUING_AUTHORIZATION_HOLD = 'issuing_authorization_hold'; |
| 44 | const TYPE_ISSUING_AUTHORIZATION_RELEASE = 'issuing_authorization_release'; |
| 45 | const TYPE_ISSUING_TRANSACTION = 'issuing_transaction'; |
| 46 | const TYPE_PAYMENT = 'payment'; |
| 47 | const TYPE_PAYMENT_FAILURE_REFUND = 'payment_failure_refund'; |
| 48 | const TYPE_PAYMENT_REFUND = 'payment_refund'; |
| 49 | const TYPE_PAYOUT = 'payout'; |
| 50 | const TYPE_PAYOUT_CANCEL = 'payout_cancel'; |
| 51 | const TYPE_PAYOUT_FAILURE = 'payout_failure'; |
| 52 | const TYPE_REFUND = 'refund'; |
| 53 | const TYPE_REFUND_FAILURE = 'refund_failure'; |
| 54 | const TYPE_RESERVE_TRANSACTION = 'reserve_transaction'; |
| 55 | const TYPE_RESERVED_FUNDS = 'reserved_funds'; |
| 56 | const TYPE_STRIPE_FEE = 'stripe_fee'; |
| 57 | const TYPE_STRIPE_FX_FEE = 'stripe_fx_fee'; |
| 58 | const TYPE_TAX_FEE = 'tax_fee'; |
| 59 | const TYPE_TOPUP = 'topup'; |
| 60 | const TYPE_TOPUP_REVERSAL = 'topup_reversal'; |
| 61 | const TYPE_TRANSFER = 'transfer'; |
| 62 | const TYPE_TRANSFER_CANCEL = 'transfer_cancel'; |
| 63 | const TYPE_TRANSFER_FAILURE = 'transfer_failure'; |
| 64 | const TYPE_TRANSFER_REFUND = 'transfer_refund'; |
| 65 | } |
| 66 |