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