pub struct VoidInvoiceRequest {
pub lago_id: String,
}Expand description
Request for voiding a finalized invoice.
This voids a finalized invoice, changing its status to “voided”. Only finalized invoices can be voided.
Fields§
§lago_id: StringThe Lago ID of the invoice to void.
Implementations§
Trait Implementations§
Source§impl Clone for VoidInvoiceRequest
impl Clone for VoidInvoiceRequest
Source§fn clone(&self) -> VoidInvoiceRequest
fn clone(&self) -> VoidInvoiceRequest
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 moreAuto Trait Implementations§
impl Freeze for VoidInvoiceRequest
impl RefUnwindSafe for VoidInvoiceRequest
impl Send for VoidInvoiceRequest
impl Sync for VoidInvoiceRequest
impl Unpin for VoidInvoiceRequest
impl UnwindSafe for VoidInvoiceRequest
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