pub struct OfflinePaymentDetails {
pub client_created_at: Option<String>,
}Expand description
Details specific to offline payments.
Fields§
§client_created_at: Option<String>Read only The client-side timestamp of when the offline payment was created, in RFC 3339 format.
Examples for January 25th, 2020 6:25:34pm Pacific Standard Time:
UTC: 2020-01-26T02:25:34Z
Pacific Standard Time with UTC offset: 2020-01-25T18:25:34-08:00 Max Length 32
Trait Implementations§
Source§impl Clone for OfflinePaymentDetails
impl Clone for OfflinePaymentDetails
Source§fn clone(&self) -> OfflinePaymentDetails
fn clone(&self) -> OfflinePaymentDetails
Returns a copy 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 OfflinePaymentDetails
impl Debug for OfflinePaymentDetails
Source§impl Default for OfflinePaymentDetails
impl Default for OfflinePaymentDetails
Source§fn default() -> OfflinePaymentDetails
fn default() -> OfflinePaymentDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OfflinePaymentDetails
impl<'de> Deserialize<'de> for OfflinePaymentDetails
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 OfflinePaymentDetails
impl PartialEq for OfflinePaymentDetails
Source§impl Serialize for OfflinePaymentDetails
impl Serialize for OfflinePaymentDetails
impl Eq for OfflinePaymentDetails
impl StructuralPartialEq for OfflinePaymentDetails
Auto Trait Implementations§
impl Freeze for OfflinePaymentDetails
impl RefUnwindSafe for OfflinePaymentDetails
impl Send for OfflinePaymentDetails
impl Sync for OfflinePaymentDetails
impl Unpin for OfflinePaymentDetails
impl UnwindSafe for OfflinePaymentDetails
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