pub struct Review {Show 14 fields
pub billing_zip: Option<String>,
pub charge: Option<Value>,
pub closed_reason: Option<String>,
pub created: i64,
pub id: String,
pub ip_address: Option<String>,
pub ip_address_location: Option<Value>,
pub livemode: bool,
pub object: String,
pub open: bool,
pub opened_reason: String,
pub payment_intent: Option<Value>,
pub reason: String,
pub session: Option<Value>,
}Expand description
Fields§
§billing_zip: Option<String>The ZIP or postal code of the card used, if applicable.
charge: Option<Value>The charge associated with this review.
closed_reason: Option<String>The reason the review was closed, or null if it has not yet been closed. One of approved, refunded, refunded_as_fraud, disputed, or redacted.
created: i64Time at which the object was created. Measured in seconds since the Unix epoch.
id: StringUnique identifier for the object.
ip_address: Option<String>The IP address where the payment originated.
ip_address_location: Option<Value>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: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
object: StringString representing the object’s type. Objects of the same type share the same value.
open: boolIf true, the review needs action.
opened_reason: StringThe reason the review was opened. One of rule or manual.
payment_intent: Option<Value>The PaymentIntent ID associated with this review, if one exists.
reason: StringThe reason the review is currently open or closed. One of rule, manual, approved, refunded, refunded_as_fraud, disputed, or redacted.
session: Option<Value>Information related to the browsing session of the user who initiated the payment.