pub struct CardPaymentTimeline {
pub authorized_at: Option<DateTime>,
pub captured_at: Option<DateTime>,
pub voided_at: Option<DateTime>,
}
Expand description
The timeline for card payments.
Fields§
The timestamp when the payment was authorized.
captured_at: Option<DateTime>
The timestamp when the payment was captured.
voided_at: Option<DateTime>
The timestamp when the payment was voided.
Trait Implementations§
Source§impl Clone for CardPaymentTimeline
impl Clone for CardPaymentTimeline
Source§fn clone(&self) -> CardPaymentTimeline
fn clone(&self) -> CardPaymentTimeline
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CardPaymentTimeline
impl Debug for CardPaymentTimeline
Source§impl Default for CardPaymentTimeline
impl Default for CardPaymentTimeline
Source§fn default() -> CardPaymentTimeline
fn default() -> CardPaymentTimeline
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CardPaymentTimeline
impl<'de> Deserialize<'de> for CardPaymentTimeline
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CardPaymentTimeline
impl PartialEq for CardPaymentTimeline
Source§impl Serialize for CardPaymentTimeline
impl Serialize for CardPaymentTimeline
impl Eq for CardPaymentTimeline
impl StructuralPartialEq for CardPaymentTimeline
Auto Trait Implementations§
impl Freeze for CardPaymentTimeline
impl RefUnwindSafe for CardPaymentTimeline
impl Send for CardPaymentTimeline
impl Sync for CardPaymentTimeline
impl Unpin for CardPaymentTimeline
impl UnwindSafe for CardPaymentTimeline
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.