X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/stripe/stripe-php/lib
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
stripe
/
stripe-php
/
lib
/
π
..
π
Account.php
(15.84 KB)
π
AccountLink.php
(789 B)
π
AlipayAccount.php
(2.33 KB)
π
ApiOperations
π
ApiRequestor.php
(14.37 KB)
π
ApiResource.php
(3.37 KB)
π
ApiResponse.php
(712 B)
π
ApplePayDomain.php
(975 B)
π
ApplicationFee.php
(4.06 KB)
π
ApplicationFeeRefund.php
(2.4 KB)
π
Balance.php
(2.16 KB)
π
BalanceTransaction.php
(5.43 KB)
π
BankAccount.php
(6.68 KB)
π
BaseStripeClient.php
(9.17 KB)
π
BillingPortal
π
BitcoinReceiver.php
(4.09 KB)
π
BitcoinTransaction.php
(844 B)
π
Capability.php
(2.83 KB)
π
Card.php
(7.64 KB)
π
Charge.php
(11.99 KB)
π
Checkout
π
Collection.php
(7 KB)
π
CountrySpec.php
(1.7 KB)
π
Coupon.php
(2.82 KB)
π
CreditNote.php
(5.51 KB)
π
CreditNoteLineItem.php
(1.73 KB)
π
Customer.php
(12.36 KB)
π
CustomerBalanceTransaction.php
(5.17 KB)
π
Discount.php
(298 B)
π
Dispute.php
(5.03 KB)
π
EphemeralKey.php
(1.51 KB)
π
ErrorObject.php
(8.46 KB)
π
Event.php
(11.85 KB)
π
Exception
π
ExchangeRate.php
(1.37 KB)
π
File.php
(3.24 KB)
π
FileLink.php
(1.41 KB)
π
HttpClient
π
Invoice.php
(18.07 KB)
π
InvoiceItem.php
(3.59 KB)
π
InvoiceLineItem.php
(2.65 KB)
π
Issuing
π
LineItem.php
(1.99 KB)
π
LoginLink.php
(385 B)
π
Mandate.php
(1.04 KB)
π
OAuth.php
(3.31 KB)
π
OAuthErrorObject.php
(861 B)
π
Order.php
(5.06 KB)
π
OrderItem.php
(333 B)
π
OrderReturn.php
(1.61 KB)
π
PaymentIntent.php
(10.92 KB)
π
PaymentMethod.php
(3.32 KB)
π
Payout.php
(5.86 KB)
π
Person.php
(4.47 KB)
π
Plan.php
(5.41 KB)
π
Price.php
(4.55 KB)
π
Product.php
(4.12 KB)
π
Radar
π
Recipient.php
(2.65 KB)
π
RecipientTransfer.php
(918 B)
π
Refund.php
(4 KB)
π
Reporting
π
RequestTelemetry.php
(539 B)
π
Review.php
(3.25 KB)
π
SKU.php
(2.78 KB)
π
Service
π
SetupIntent.php
(6.88 KB)
π
Sigma
π
SingletonApiResource.php
(917 B)
π
Source.php
(8.33 KB)
π
SourceTransaction.php
(408 B)
π
Stripe.php
(7.05 KB)
π
StripeClient.php
(3.32 KB)
π
StripeClientInterface.php
(1.4 KB)
π
StripeObject.php
(18.43 KB)
π
Subscription.php
(10.57 KB)
π
SubscriptionItem.php
(5.43 KB)
π
SubscriptionSchedule.php
(3.78 KB)
π
TaxId.php
(4.19 KB)
π
TaxRate.php
(2.08 KB)
π
Terminal
π
ThreeDSecure.php
(2.5 KB)
π
Token.php
(3.5 KB)
π
Topup.php
(3.86 KB)
π
Transfer.php
(6.13 KB)
π
TransferReversal.php
(3.2 KB)
π
UsageRecord.php
(939 B)
π
UsageRecordSummary.php
(771 B)
π
Util
π
Webhook.php
(1.48 KB)
π
WebhookEndpoint.php
(2.22 KB)
π
WebhookSignature.php
(4.28 KB)
Editing: Review.php
<?php namespace Stripe; /** * Reviews can be used to supplement automated fraud detection with human * expertise. * * Learn more about <a href="/radar">Radar</a> and reviewing payments <a * href="https://stripe.com/docs/radar/reviews">here</a>. * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. * @property null|string $billing_zip The ZIP or postal code of the card used, if applicable. * @property null|string|\Stripe\Charge $charge The charge associated with this review. * @property null|string $closed_reason The reason the review was closed, or null if it has not yet been closed. One of <code>approved</code>, <code>refunded</code>, <code>refunded_as_fraud</code>, or <code>disputed</code>. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property null|string $ip_address The IP address where the payment originated. * @property null|\Stripe\StripeObject $ip_address_location Information related to the location of the payment. Note that this information is an approximation and attempts to locate the nearest population center - it should not be used to determine a specific address. * @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. * @property bool $open If <code>true</code>, the review needs action. * @property string $opened_reason The reason the review was opened. One of <code>rule</code> or <code>manual</code>. * @property string|\Stripe\PaymentIntent $payment_intent The PaymentIntent ID associated with this review, if one exists. * @property string $reason The reason the review is currently open or closed. One of <code>rule</code>, <code>manual</code>, <code>approved</code>, <code>refunded</code>, <code>refunded_as_fraud</code>, or <code>disputed</code>. * @property null|\Stripe\StripeObject $session Information related to the browsing session of the user who initiated the payment. */ class Review extends ApiResource { const OBJECT_NAME = 'review'; use ApiOperations\All; use ApiOperations\Retrieve; /** * Possible string representations of the current, the opening or the closure reason of the review. * Not all of these enumeration apply to all of the Β΄reasonΒ΄ fields. Please consult the Review object to * determine where these are apply. * * @see https://stripe.com/docs/api/radar/reviews/object */ const REASON_APPROVED = 'approved'; const REASON_DISPUTED = 'disputed'; const REASON_MANUAL = 'manual'; const REASON_REFUNDED = 'refunded'; const REASON_REFUNDED_AS_FRAUD = 'refunded_as_fraud'; const REASON_RULE = 'rule'; /** * @param null|array $params * @param null|array|string $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return Review the approved review */ public function approve($params = null, $opts = null) { $url = $this->instanceUrl() . '/approve'; list($response, $opts) = $this->_request('post', $url, $params, $opts); $this->refreshFrom($response, $opts); return $this; } }
Upload File
Create Folder