pub struct UpdateInvoiceRequest {
pub lago_id: String,
pub invoice: UpdateInvoiceInput,
}Expand description
Request for updating an invoice.
Fields§
§lago_id: StringThe Lago ID of the invoice to update.
invoice: UpdateInvoiceInputThe invoice update data.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInvoiceRequest
impl Clone for UpdateInvoiceRequest
Source§fn clone(&self) -> UpdateInvoiceRequest
fn clone(&self) -> UpdateInvoiceRequest
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 UpdateInvoiceRequest
impl Debug for UpdateInvoiceRequest
Source§impl<'de> Deserialize<'de> for UpdateInvoiceRequest
impl<'de> Deserialize<'de> for UpdateInvoiceRequest
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 UpdateInvoiceRequest
impl RefUnwindSafe for UpdateInvoiceRequest
impl Send for UpdateInvoiceRequest
impl Sync for UpdateInvoiceRequest
impl Unpin for UpdateInvoiceRequest
impl UnwindSafe for UpdateInvoiceRequest
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