pub struct Review {Show 13 fields
pub billing_zip: Option<String>,
pub charge: Option<Expandable<Charge>>,
pub closed_reason: Option<ReviewClosedReason>,
pub created: Timestamp,
pub id: ReviewId,
pub ip_address: Option<String>,
pub ip_address_location: Option<RadarReviewResourceLocation>,
pub livemode: bool,
pub open: bool,
pub opened_reason: ReviewOpenedReason,
pub payment_intent: Option<Expandable<PaymentIntent>>,
pub reason: String,
pub session: Option<RadarReviewResourceSession>,
}
Expand description
Reviews can be used to supplement automated fraud detection with human expertise.
Learn more about Radar and reviewing payments here.
For more details see <https://stripe.com/docs/api/radar/reviews/object>.
Fields§
§billing_zip: Option<String>
The ZIP or postal code of the card used, if applicable.
charge: Option<Expandable<Charge>>
The charge associated with this review.
closed_reason: Option<ReviewClosedReason>
The reason the review was closed, or null if it has not yet been closed.
One of approved
, refunded
, refunded_as_fraud
, disputed
, redacted
, or canceled
.
created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
id: ReviewId
Unique identifier for the object.
ip_address: Option<String>
The IP address where the payment originated.
ip_address_location: Option<RadarReviewResourceLocation>
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.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
open: bool
If true
, the review needs action.
opened_reason: ReviewOpenedReason
The reason the review was opened. One of rule
or manual
.
payment_intent: Option<Expandable<PaymentIntent>>
The PaymentIntent ID associated with this review, if one exists.
reason: String
The reason the review is currently open or closed.
One of rule
, manual
, approved
, refunded
, refunded_as_fraud
, disputed
, redacted
, or canceled
.
session: Option<RadarReviewResourceSession>
Information related to the browsing session of the user who initiated the payment.