pub struct RemoveLinesInvoiceLines {
pub behavior: RemoveLinesInvoiceLinesBehavior,
pub id: String,
}
Expand description
The line items to remove.
Fields§
§behavior: RemoveLinesInvoiceLinesBehavior
Either delete
or unassign
.
Deleted line items are permanently deleted.
Unassigned line items can be reassigned to an invoice.
id: String
ID of an existing line item to remove from this invoice.
Implementations§
Trait Implementations§
Source§impl Clone for RemoveLinesInvoiceLines
impl Clone for RemoveLinesInvoiceLines
Source§fn clone(&self) -> RemoveLinesInvoiceLines
fn clone(&self) -> RemoveLinesInvoiceLines
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 RemoveLinesInvoiceLines
impl Debug for RemoveLinesInvoiceLines
Auto Trait Implementations§
impl Freeze for RemoveLinesInvoiceLines
impl RefUnwindSafe for RemoveLinesInvoiceLines
impl Send for RemoveLinesInvoiceLines
impl Sync for RemoveLinesInvoiceLines
impl Unpin for RemoveLinesInvoiceLines
impl UnwindSafe for RemoveLinesInvoiceLines
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