pub struct ChargeFraudDetails {
pub stripe_report: Option<String>,
pub user_report: Option<String>,
}
Fields§
§stripe_report: Option<String>
Assessments from Stripe. If set, the value is fraudulent
.
user_report: Option<String>
Assessments reported by you. If set, possible values of are safe
and fraudulent
.
Trait Implementations§
Source§impl Clone for ChargeFraudDetails
impl Clone for ChargeFraudDetails
Source§fn clone(&self) -> ChargeFraudDetails
fn clone(&self) -> ChargeFraudDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ChargeFraudDetails
impl Debug for ChargeFraudDetails
Source§impl Deserialize for ChargeFraudDetails
impl Deserialize for ChargeFraudDetails
Source§impl FromValueOpt for ChargeFraudDetails
impl FromValueOpt for ChargeFraudDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for ChargeFraudDetails
impl RefUnwindSafe for ChargeFraudDetails
impl Send for ChargeFraudDetails
impl Sync for ChargeFraudDetails
impl Unpin for ChargeFraudDetails
impl UnwindSafe for ChargeFraudDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more