pub struct DeleteInvoiceParameters {
pub version: Option<i32>,
}
Expand description
This is a model struct for DeleteInvoiceParameters (query parameters)
Fields§
§version: Option<i32>
The version of the [Invoice] to delete. If you do not know the version, you can call GetInvoice or ListInvoices.
Implementations§
Source§impl DeleteInvoiceParameters
impl DeleteInvoiceParameters
pub fn to_query_string(&self) -> String
Trait Implementations§
Source§impl Clone for DeleteInvoiceParameters
impl Clone for DeleteInvoiceParameters
Source§fn clone(&self) -> DeleteInvoiceParameters
fn clone(&self) -> DeleteInvoiceParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteInvoiceParameters
impl Debug for DeleteInvoiceParameters
Source§impl Default for DeleteInvoiceParameters
impl Default for DeleteInvoiceParameters
Source§fn default() -> DeleteInvoiceParameters
fn default() -> DeleteInvoiceParameters
Returns the “default value” for a type. Read more
Source§impl From<DeleteInvoiceParameters> for String
impl From<DeleteInvoiceParameters> for String
Source§fn from(delete_invoice_parameters: DeleteInvoiceParameters) -> Self
fn from(delete_invoice_parameters: DeleteInvoiceParameters) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeleteInvoiceParameters
impl RefUnwindSafe for DeleteInvoiceParameters
impl Send for DeleteInvoiceParameters
impl Sync for DeleteInvoiceParameters
impl Unpin for DeleteInvoiceParameters
impl UnwindSafe for DeleteInvoiceParameters
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