pub struct PaymentLineItemEntity {
pub id: Option<i64>,
pub amount: Option<f64>,
pub created_at: Option<String>,
pub invoice_id: Option<i64>,
pub payment_id: Option<i64>,
}
Expand description
A Payment Line Item entity
Fields§
§id: Option<i64>
Line item ID
amount: Option<f64>
Amount
created_at: Option<String>
Created at
invoice_id: Option<i64>
Invoice ID
payment_id: Option<i64>
Payment ID
Trait Implementations§
Source§impl Clone for PaymentLineItemEntity
impl Clone for PaymentLineItemEntity
Source§fn clone(&self) -> PaymentLineItemEntity
fn clone(&self) -> PaymentLineItemEntity
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 PaymentLineItemEntity
impl Debug for PaymentLineItemEntity
Source§impl<'de> Deserialize<'de> for PaymentLineItemEntity
impl<'de> Deserialize<'de> for PaymentLineItemEntity
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 PaymentLineItemEntity
impl RefUnwindSafe for PaymentLineItemEntity
impl Send for PaymentLineItemEntity
impl Sync for PaymentLineItemEntity
impl Unpin for PaymentLineItemEntity
impl UnwindSafe for PaymentLineItemEntity
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