pub struct InvoiceMarkSentInput {
pub invoice_id: String,
pub send_method: InvoiceSendMethod,
pub sent_at: Option<DateTime<Utc>>,
}Expand description
Input for marking an invoice as sent.
Fields§
§invoice_id: String§send_method: InvoiceSendMethod§sent_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for InvoiceMarkSentInput
impl Clone for InvoiceMarkSentInput
Source§fn clone(&self) -> InvoiceMarkSentInput
fn clone(&self) -> InvoiceMarkSentInput
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 InvoiceMarkSentInput
impl Debug for InvoiceMarkSentInput
Auto Trait Implementations§
impl Freeze for InvoiceMarkSentInput
impl RefUnwindSafe for InvoiceMarkSentInput
impl Send for InvoiceMarkSentInput
impl Sync for InvoiceMarkSentInput
impl Unpin for InvoiceMarkSentInput
impl UnsafeUnpin for InvoiceMarkSentInput
impl UnwindSafe for InvoiceMarkSentInput
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