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

stripe / stripe-php / #7087

pending completion
#7087

push

php-coveralls

pakrym-stripe
Bump version to 10.14.0-beta.2

1831 of 2732 relevant lines covered (67.02%)

3.81 hits per line

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

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

3
// File generated from our OpenAPI spec
4

5
namespace Stripe;
6

7
/**
8
 * To charge a credit or a debit card, you create a <code>Charge</code> object. You can
9
 * retrieve and refund individual charges as well as list all charges. Charges
10
 * are identified by a unique, random ID.
11
 *
12
 * Related guide: <a href="https://stripe.com/docs/payments/accept-a-payment-charges">Accept a payment with the Charges API</a>
13
 *
14
 * @property string $id Unique identifier for the object.
15
 * @property string $object String representing the object's type. Objects of the same type share the same value.
16
 * @property null|\Stripe\StripeObject $alternate_statement_descriptors
17
 * @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).
18
 * @property int $amount_captured Amount in %s captured (can be less than the amount attribute on the charge if a partial capture was made).
19
 * @property int $amount_refunded Amount in %s refunded (can be less than the amount attribute on the charge if a partial refund was issued).
20
 * @property null|string|\Stripe\StripeObject $application ID of the Connect application that created the charge.
21
 * @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.
22
 * @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.
23
 * @property null|string $authorization_code Authorization code on the charge.
24
 * @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).
25
 * @property \Stripe\StripeObject $billing_details
26
 * @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.
27
 * @property bool $captured If the charge was created without capturing, this Boolean represents whether it is still uncaptured or has since been captured.
28
 * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
29
 * @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>.
30
 * @property null|string|\Stripe\Customer $customer ID of the customer this charge is for if one exists.
31
 * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
32
 * @property null|string|\Stripe\Account $destination ID of an existing, connected Stripe account to transfer funds to if <code>transfer_data</code> was specified in the charge request.
33
 * @property null|string|\Stripe\Dispute $dispute Details about the dispute if the charge has been disputed.
34
 * @property bool $disputed Whether the charge has been disputed.
35
 * @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.
36
 * @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).
37
 * @property null|string $failure_message Message to user further explaining reason for charge failure if available.
38
 * @property null|\Stripe\StripeObject $fraud_details Information on fraud assessments for the charge.
39
 * @property null|string|\Stripe\Invoice $invoice ID of the invoice this charge is for if one exists.
40
 * @property null|\Stripe\StripeObject $level3
41
 * @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.
42
 * @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.
43
 * @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/charges-transfers">Connect documentation</a> for details.
44
 * @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.
45
 * @property bool $paid <code>true</code> if the charge succeeded, or was successfully authorized for later capture.
46
 * @property null|string|\Stripe\PaymentIntent $payment_intent ID of the PaymentIntent associated with this charge, if one exists.
47
 * @property null|string $payment_method ID of the payment method used in this charge.
48
 * @property null|\Stripe\StripeObject $payment_method_details Details about the payment method at the time of the transaction.
49
 * @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.
50
 * @property null|string $receipt_email This is the email address that the receipt for this charge was sent to.
51
 * @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.
52
 * @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.
53
 * @property bool $refunded Whether the charge has been fully refunded. If the charge is only partially refunded, this attribute will still be false.
54
 * @property null|\Stripe\Collection<\Stripe\Refund> $refunds A list of refunds that have been applied to the charge.
55
 * @property null|string|\Stripe\Review $review ID of the review associated with this charge if one exists.
56
 * @property null|\Stripe\StripeObject $shipping Shipping information for the charge.
57
 * @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.
58
 * @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.
59
 * @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.
60
 * @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.
61
 * @property string $status The status of the payment is either <code>succeeded</code>, <code>pending</code>, or <code>failed</code>.
62
 * @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).
63
 * @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.
64
 * @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/charges-transfers#transfer-options">Connect documentation</a> for details.
65
 */
66
class Charge extends ApiResource
67
{
68
    const OBJECT_NAME = 'charge';
69

70
    use ApiOperations\All;
71
    use ApiOperations\Create;
72
    use ApiOperations\Retrieve;
73
    use ApiOperations\Search;
74
    use ApiOperations\Update;
75

76
    const STATUS_FAILED = 'failed';
77
    const STATUS_PENDING = 'pending';
78
    const STATUS_SUCCEEDED = 'succeeded';
79

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

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

147
        return $this;
1✔
148
    }
149

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

162
        return self::_searchResource($url, $params, $opts);
×
163
    }
164
}
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