pub struct CreateInvoicePaymentRequest<'a> {
pub invoice_id: String,
pub amount: Option<f64>,
pub paid_at: Option<String>,
pub paid_date: Option<String>,
pub notes: Option<String>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§invoice_id: String§amount: Option<f64>§paid_at: Option<String>§paid_date: Option<String>§notes: Option<String>Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CreateInvoicePaymentRequest<'a>
impl<'a> !RefUnwindSafe for CreateInvoicePaymentRequest<'a>
impl<'a> Send for CreateInvoicePaymentRequest<'a>
impl<'a> Sync for CreateInvoicePaymentRequest<'a>
impl<'a> Unpin for CreateInvoicePaymentRequest<'a>
impl<'a> !UnwindSafe for CreateInvoicePaymentRequest<'a>
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