pub struct IssuingCardFraudWarning {
pub started_at: Option<Timestamp>,
pub type_: Option<IssuingCardFraudWarningType>,
}Fields§
§started_at: Option<Timestamp>Timestamp of the most recent fraud warning.
type_: Option<IssuingCardFraudWarningType>The type of fraud warning that most recently took place on this card. This field updates with every new fraud warning, so the value changes over time. If populated, cancel and reissue the card.
Trait Implementations§
Source§impl Clone for IssuingCardFraudWarning
impl Clone for IssuingCardFraudWarning
Source§fn clone(&self) -> IssuingCardFraudWarning
fn clone(&self) -> IssuingCardFraudWarning
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 IssuingCardFraudWarning
impl Debug for IssuingCardFraudWarning
Source§impl FromValueOpt for IssuingCardFraudWarning
impl FromValueOpt for IssuingCardFraudWarning
fn from_value(v: Value) -> Option<Self>
impl Copy for IssuingCardFraudWarning
Auto Trait Implementations§
impl Freeze for IssuingCardFraudWarning
impl RefUnwindSafe for IssuingCardFraudWarning
impl Send for IssuingCardFraudWarning
impl Sync for IssuingCardFraudWarning
impl Unpin for IssuingCardFraudWarning
impl UnwindSafe for IssuingCardFraudWarning
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