pub struct SourceTransactionPaperCheckData {
pub available_at: Option<String>,
pub invoices: Option<String>,
}
Expand description
Fields§
§available_at: Option<String>
Time at which the deposited funds will be available for use. Measured in seconds since the Unix epoch.
invoices: Option<String>
Comma-separated list of invoice IDs associated with the paper check.
Trait Implementations§
Source§impl Clone for SourceTransactionPaperCheckData
impl Clone for SourceTransactionPaperCheckData
Source§fn clone(&self) -> SourceTransactionPaperCheckData
fn clone(&self) -> SourceTransactionPaperCheckData
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 Default for SourceTransactionPaperCheckData
impl Default for SourceTransactionPaperCheckData
Source§fn default() -> SourceTransactionPaperCheckData
fn default() -> SourceTransactionPaperCheckData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceTransactionPaperCheckData
impl<'de> Deserialize<'de> for SourceTransactionPaperCheckData
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
Auto Trait Implementations§
impl Freeze for SourceTransactionPaperCheckData
impl RefUnwindSafe for SourceTransactionPaperCheckData
impl Send for SourceTransactionPaperCheckData
impl Sync for SourceTransactionPaperCheckData
impl Unpin for SourceTransactionPaperCheckData
impl UnwindSafe for SourceTransactionPaperCheckData
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