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
Dispute.php
78 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class Dispute |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property int $amount |
| 11 | * @property BalanceTransaction[] $balance_transactions |
| 12 | * @property string $charge |
| 13 | * @property int $created |
| 14 | * @property string $currency |
| 15 | * @property mixed $evidence |
| 16 | * @property mixed $evidence_details |
| 17 | * @property bool $is_charge_refundable |
| 18 | * @property bool $livemode |
| 19 | * @property StripeObject $metadata |
| 20 | * @property string $reason |
| 21 | * @property string $status |
| 22 | * |
| 23 | * @package Stripe |
| 24 | */ |
| 25 | class Dispute extends ApiResource |
| 26 | { |
| 27 | const OBJECT_NAME = "dispute"; |
| 28 | |
| 29 | use ApiOperations\All; |
| 30 | use ApiOperations\Retrieve; |
| 31 | use ApiOperations\Update; |
| 32 | |
| 33 | /** |
| 34 | * Possible string representations of dispute reasons. |
| 35 | * @link https://stripe.com/docs/api#dispute_object |
| 36 | */ |
| 37 | const REASON_BANK_CANNOT_PROCESS = 'bank_cannot_process'; |
| 38 | const REASON_CHECK_RETURNED = 'check_returned'; |
| 39 | const REASON_CREDIT_NOT_PROCESSED = 'credit_not_processed'; |
| 40 | const REASON_CUSTOMER_INITIATED = 'customer_initiated'; |
| 41 | const REASON_DEBIT_NOT_AUTHORIZED = 'debit_not_authorized'; |
| 42 | const REASON_DUPLICATE = 'duplicate'; |
| 43 | const REASON_FRAUDULENT = 'fraudulent'; |
| 44 | const REASON_GENERAL = 'general'; |
| 45 | const REASON_INCORRECT_ACCOUNT_DETAILS = 'incorrect_account_details'; |
| 46 | const REASON_INSUFFICIENT_FUNDS = 'insufficient_funds'; |
| 47 | const REASON_PRODUCT_NOT_RECEIVED = 'product_not_received'; |
| 48 | const REASON_PRODUCT_UNACCEPTABLE = 'product_unacceptable'; |
| 49 | const REASON_SUBSCRIPTION_CANCELED = 'subscription_canceled'; |
| 50 | const REASON_UNRECOGNIZED = 'unrecognized'; |
| 51 | |
| 52 | /** |
| 53 | * Possible string representations of dispute statuses. |
| 54 | * @link https://stripe.com/docs/api#dispute_object |
| 55 | */ |
| 56 | const STATUS_CHARGE_REFUNDED = 'charge_refunded'; |
| 57 | const STATUS_LOST = 'lost'; |
| 58 | const STATUS_NEEDS_RESPONSE = 'needs_response'; |
| 59 | const STATUS_UNDER_REVIEW = 'under_review'; |
| 60 | const STATUS_WARNING_CLOSED = 'warning_closed'; |
| 61 | const STATUS_WARNING_NEEDS_RESPONSE = 'warning_needs_response'; |
| 62 | const STATUS_WARNING_UNDER_REVIEW = 'warning_under_review'; |
| 63 | const STATUS_WON = 'won'; |
| 64 | |
| 65 | /** |
| 66 | * @param array|string|null $options |
| 67 | * |
| 68 | * @return Dispute The closed dispute. |
| 69 | */ |
| 70 | public function close($options = null) |
| 71 | { |
| 72 | $url = $this->instanceUrl() . '/close'; |
| 73 | list($response, $opts) = $this->_request('post', $url, null, $options); |
| 74 | $this->refreshFrom($response, $opts); |
| 75 | return $this; |
| 76 | } |
| 77 | } |
| 78 |