pub struct InvoicePayments {
pub links: PaginationLinks,
pub total_entries: i64,
pub per_page: i64,
pub previous_page: Option<i64>,
pub page: i64,
pub total_pages: i64,
pub invoice_payments: Vec<InvoicePayment>,
pub next_page: Option<i64>,
}Fields§
§links: PaginationLinks§total_entries: i64§per_page: i64§previous_page: Option<i64>§page: i64§total_pages: i64§invoice_payments: Vec<InvoicePayment>§next_page: Option<i64>Trait Implementations§
Source§impl Debug for InvoicePayments
impl Debug for InvoicePayments
Source§impl<'de> Deserialize<'de> for InvoicePayments
impl<'de> Deserialize<'de> for InvoicePayments
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
Source§impl Display for InvoicePayments
impl Display for InvoicePayments
Auto Trait Implementations§
impl Freeze for InvoicePayments
impl RefUnwindSafe for InvoicePayments
impl Send for InvoicePayments
impl Sync for InvoicePayments
impl Unpin for InvoicePayments
impl UnwindSafe for InvoicePayments
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