• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stripe / stripe-php / 6471862601

10 Oct 2023 04:02PM UTC coverage: 69.665% (-0.5%) from 70.141%
6471862601

push

github

web-flow
Merge pull request #1570 from localheinz/feature/coveralls

Enhancement: Use `coverallsapp/github-action` to report code coverage

2393 of 3435 relevant lines covered (69.67%)

3.5 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

62.5
/lib/Charge.php
1
<?php
2

3
// File generated from our OpenAPI spec
4

5
namespace Stripe;
6

7
/**
8
 * The <code>Charge</code> object represents a single attempt to move money into your Stripe account.
9
 * PaymentIntent confirmation is the most common way to create Charges, but transferring
10
 * money to a different Stripe account through Connect also creates Charges.
11
 * Some legacy payment flows create Charges directly, which is not recommended for new integrations.
12
 *
13
 * @property string $id Unique identifier for the object.
14
 * @property string $object String representing the object's type. Objects of the same type share the same value.
15
 * @property int $amount Amount intended to be collected by this payment. A positive integer representing how much to charge in the <a href="https://stripe.com/docs/currencies#zero-decimal">smallest currency unit</a> (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or <a href="https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts">equivalent in charge currency</a>. The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
16
 * @property int $amount_captured Amount in cents (or local equivalent) captured (can be less than the amount attribute on the charge if a partial capture was made).
17
 * @property int $amount_refunded Amount in cents (or local equivalent) refunded (can be less than the amount attribute on the charge if a partial refund was issued).
18
 * @property null|string|\Stripe\StripeObject $application ID of the Connect application that created the charge.
19
 * @property null|string|\Stripe\ApplicationFee $application_fee The application fee (if any) for the charge. <a href="https://stripe.com/docs/connect/direct-charges#collecting-fees">See the Connect documentation</a> for details.
20
 * @property null|int $application_fee_amount The amount of the application fee (if any) requested for the charge. <a href="https://stripe.com/docs/connect/direct-charges#collecting-fees">See the Connect documentation</a> for details.
21
 * @property null|string $authorization_code Authorization code on the charge.
22
 * @property null|string|\Stripe\BalanceTransaction $balance_transaction ID of the balance transaction that describes the impact of this charge on your account balance (not including refunds or disputes).
23
 * @property \Stripe\StripeObject $billing_details
24
 * @property null|string $calculated_statement_descriptor The full statement descriptor that is passed to card networks, and that is displayed on your customers' credit card and bank statements. Allows you to see what the statement descriptor looks like after the static and dynamic portions are combined.
25
 * @property bool $captured If the charge was created without capturing, this Boolean represents whether it is still uncaptured or has since been captured.
26
 * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
27
 * @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>.
28
 * @property null|string|\Stripe\Customer $customer ID of the customer this charge is for if one exists.
29
 * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
30
 * @property bool $disputed Whether the charge has been disputed.
31
 * @property null|string|\Stripe\BalanceTransaction $failure_balance_transaction ID of the balance transaction that describes the reversal of the balance on your account due to payment failure.
32
 * @property null|string $failure_code Error code explaining reason for charge failure if available (see <a href="https://stripe.com/docs/error-codes">the errors section</a> for a list of codes).
33
 * @property null|string $failure_message Message to user further explaining reason for charge failure if available.
34
 * @property null|\Stripe\StripeObject $fraud_details Information on fraud assessments for the charge.
35
 * @property null|string|\Stripe\Invoice $invoice ID of the invoice this charge is for if one exists.
36
 * @property null|\Stripe\StripeObject $level3
37
 * @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.
38
 * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
39
 * @property null|string|\Stripe\Account $on_behalf_of The account (if any) the charge was made on behalf of without triggering an automatic transfer. See the <a href="https://stripe.com/docs/connect/separate-charges-and-transfers">Connect documentation</a> for details.
40
 * @property null|\Stripe\StripeObject $outcome Details about whether the payment was accepted, and why. See <a href="https://stripe.com/docs/declines">understanding declines</a> for details.
41
 * @property bool $paid <code>true</code> if the charge succeeded, or was successfully authorized for later capture.
42
 * @property null|string|\Stripe\PaymentIntent $payment_intent ID of the PaymentIntent associated with this charge, if one exists.
43
 * @property null|string $payment_method ID of the payment method used in this charge.
44
 * @property null|\Stripe\StripeObject $payment_method_details Details about the payment method at the time of the transaction.
45
 * @property null|\Stripe\StripeObject $radar_options Options to configure Radar. See <a href="https://stripe.com/docs/radar/radar-session">Radar Session</a> for more information.
46
 * @property null|string $receipt_email This is the email address that the receipt for this charge was sent to.
47
 * @property null|string $receipt_number This is the transaction number that appears on email receipts sent for this charge. This attribute will be <code>null</code> until a receipt has been sent.
48
 * @property null|string $receipt_url This is the URL to view the receipt for this charge. The receipt is kept up-to-date to the latest state of the charge, including any refunds. If the charge is for an Invoice, the receipt will be stylized as an Invoice receipt.
49
 * @property bool $refunded Whether the charge has been fully refunded. If the charge is only partially refunded, this attribute will still be false.
50
 * @property null|\Stripe\Collection<\Stripe\Refund> $refunds A list of refunds that have been applied to the charge.
51
 * @property null|string|\Stripe\Review $review ID of the review associated with this charge if one exists.
52
 * @property null|\Stripe\StripeObject $shipping Shipping information for the charge.
53
 * @property null|\Stripe\Account|\Stripe\BankAccount|\Stripe\Card|\Stripe\Source $source This is a legacy field that will be removed in the future. It contains the Source, Card, or BankAccount object used for the charge. For details about the payment method used for this charge, refer to <code>payment_method</code> or <code>payment_method_details</code> instead.
54
 * @property null|string|\Stripe\Transfer $source_transfer The transfer ID which created this charge. Only present if the charge came from another Stripe account. <a href="https://stripe.com/docs/connect/destination-charges">See the Connect documentation</a> for details.
55
 * @property null|string $statement_descriptor For card charges, use <code>statement_descriptor_suffix</code> instead. Otherwise, you can use this value as the complete description of a charge on your customers’ statements. Must contain at least one letter, maximum 22 characters.
56
 * @property null|string $statement_descriptor_suffix Provides information about the charge that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.
57
 * @property string $status The status of the payment is either <code>succeeded</code>, <code>pending</code>, or <code>failed</code>.
58
 * @property null|string|\Stripe\Transfer $transfer ID of the transfer to the <code>destination</code> account (only applicable if the charge was created using the <code>destination</code> parameter).
59
 * @property null|\Stripe\StripeObject $transfer_data An optional dictionary including the account to automatically transfer to as part of a destination charge. <a href="https://stripe.com/docs/connect/destination-charges">See the Connect documentation</a> for details.
60
 * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the <a href="https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-options">Connect documentation</a> for details.
61
 */
62
class Charge extends ApiResource
63
{
64
    const OBJECT_NAME = 'charge';
65

66
    use ApiOperations\All;
67
    use ApiOperations\Create;
68
    use ApiOperations\Retrieve;
69
    use ApiOperations\Search;
70
    use ApiOperations\Update;
71

72
    const STATUS_FAILED = 'failed';
73
    const STATUS_PENDING = 'pending';
74
    const STATUS_SUCCEEDED = 'succeeded';
75

76
    /**
77
     * Possible string representations of decline codes.
78
     * These strings are applicable to the decline_code property of the \Stripe\Exception\CardException exception.
79
     *
80
     * @see https://stripe.com/docs/declines/codes
81
     */
82
    const DECLINED_AUTHENTICATION_REQUIRED = 'authentication_required';
83
    const DECLINED_APPROVE_WITH_ID = 'approve_with_id';
84
    const DECLINED_CALL_ISSUER = 'call_issuer';
85
    const DECLINED_CARD_NOT_SUPPORTED = 'card_not_supported';
86
    const DECLINED_CARD_VELOCITY_EXCEEDED = 'card_velocity_exceeded';
87
    const DECLINED_CURRENCY_NOT_SUPPORTED = 'currency_not_supported';
88
    const DECLINED_DO_NOT_HONOR = 'do_not_honor';
89
    const DECLINED_DO_NOT_TRY_AGAIN = 'do_not_try_again';
90
    const DECLINED_DUPLICATED_TRANSACTION = 'duplicate_transaction';
91
    const DECLINED_EXPIRED_CARD = 'expired_card';
92
    const DECLINED_FRAUDULENT = 'fraudulent';
93
    const DECLINED_GENERIC_DECLINE = 'generic_decline';
94
    const DECLINED_INCORRECT_NUMBER = 'incorrect_number';
95
    const DECLINED_INCORRECT_CVC = 'incorrect_cvc';
96
    const DECLINED_INCORRECT_PIN = 'incorrect_pin';
97
    const DECLINED_INCORRECT_ZIP = 'incorrect_zip';
98
    const DECLINED_INSUFFICIENT_FUNDS = 'insufficient_funds';
99
    const DECLINED_INVALID_ACCOUNT = 'invalid_account';
100
    const DECLINED_INVALID_AMOUNT = 'invalid_amount';
101
    const DECLINED_INVALID_CVC = 'invalid_cvc';
102
    const DECLINED_INVALID_EXPIRY_YEAR = 'invalid_expiry_year';
103
    const DECLINED_INVALID_NUMBER = 'invalid_number';
104
    const DECLINED_INVALID_PIN = 'invalid_pin';
105
    const DECLINED_ISSUER_NOT_AVAILABLE = 'issuer_not_available';
106
    const DECLINED_LOST_CARD = 'lost_card';
107
    const DECLINED_MERCHANT_BLACKLIST = 'merchant_blacklist';
108
    const DECLINED_NEW_ACCOUNT_INFORMATION_AVAILABLE = 'new_account_information_available';
109
    const DECLINED_NO_ACTION_TAKEN = 'no_action_taken';
110
    const DECLINED_NOT_PERMITTED = 'not_permitted';
111
    const DECLINED_OFFLINE_PIN_REQUIRED = 'offline_pin_required';
112
    const DECLINED_ONLINE_OR_OFFLINE_PIN_REQUIRED = 'online_or_offline_pin_required';
113
    const DECLINED_PICKUP_CARD = 'pickup_card';
114
    const DECLINED_PIN_TRY_EXCEEDED = 'pin_try_exceeded';
115
    const DECLINED_PROCESSING_ERROR = 'processing_error';
116
    const DECLINED_REENTER_TRANSACTION = 'reenter_transaction';
117
    const DECLINED_RESTRICTED_CARD = 'restricted_card';
118
    const DECLINED_REVOCATION_OF_ALL_AUTHORIZATIONS = 'revocation_of_all_authorizations';
119
    const DECLINED_REVOCATION_OF_AUTHORIZATION = 'revocation_of_authorization';
120
    const DECLINED_SECURITY_VIOLATION = 'security_violation';
121
    const DECLINED_SERVICE_NOT_ALLOWED = 'service_not_allowed';
122
    const DECLINED_STOLEN_CARD = 'stolen_card';
123
    const DECLINED_STOP_PAYMENT_ORDER = 'stop_payment_order';
124
    const DECLINED_TESTMODE_DECLINE = 'testmode_decline';
125
    const DECLINED_TRANSACTION_NOT_ALLOWED = 'transaction_not_allowed';
126
    const DECLINED_TRY_AGAIN_LATER = 'try_again_later';
127
    const DECLINED_WITHDRAWAL_COUNT_LIMIT_EXCEEDED = 'withdrawal_count_limit_exceeded';
128

129
    /**
130
     * @param null|array $params
131
     * @param null|array|string $opts
132
     *
133
     * @throws \Stripe\Exception\ApiErrorException if the request fails
134
     *
135
     * @return \Stripe\Charge the captured charge
136
     */
137
    public function capture($params = null, $opts = null)
1✔
138
    {
139
        $url = $this->instanceUrl() . '/capture';
1✔
140
        list($response, $opts) = $this->_request('post', $url, $params, $opts);
1✔
141
        $this->refreshFrom($response, $opts);
1✔
142

143
        return $this;
1✔
144
    }
145

146
    /**
147
     * @param null|array $params
148
     * @param null|array|string $opts
149
     *
150
     * @throws \Stripe\Exception\ApiErrorException if the request fails
151
     *
152
     * @return \Stripe\SearchResult<\Stripe\Charge> the charge search results
153
     */
154
    public static function search($params = null, $opts = null)
×
155
    {
156
        $url = '/v1/charges/search';
×
157

158
        return self::_searchResource($url, $params, $opts);
×
159
    }
160
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc