pub struct Invoice {
pub id: String,
pub invoiced_at: String,
pub type: TypeEnum,
pub updated_at: Option<String>,
pub v1: Option<Box<InvoiceDataV1>>,
}Fields§
§id: StringThe ID of the invoice.
invoiced_at: String§type: TypeEnumType is the type of the invoice. usage InvoiceTypeUsage base InvoiceTypeBase
updated_at: Option<String>§v1: Option<Box<InvoiceDataV1>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Invoice
impl<'de> Deserialize<'de> for Invoice
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
impl StructuralPartialEq for Invoice
Auto Trait Implementations§
impl Freeze for Invoice
impl RefUnwindSafe for Invoice
impl Send for Invoice
impl Sync for Invoice
impl Unpin for Invoice
impl UnwindSafe for Invoice
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