pub struct InvoiceDeletedEventData {
pub type: Option<Option<String>>,
pub id: Option<String>,
pub deleted: Option<Option<bool>>,
}Fields§
§type: Option<Option<String>>Name of the affected object’s type, \"invoice\".
id: Option<String>ID of the affected invoice.
deleted: Option<Option<bool>>Indicates that the invoice was deleted.
Implementations§
Source§impl InvoiceDeletedEventData
impl InvoiceDeletedEventData
pub fn new() -> InvoiceDeletedEventData
Trait Implementations§
Source§impl Clone for InvoiceDeletedEventData
impl Clone for InvoiceDeletedEventData
Source§fn clone(&self) -> InvoiceDeletedEventData
fn clone(&self) -> InvoiceDeletedEventData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InvoiceDeletedEventData
impl Debug for InvoiceDeletedEventData
Source§impl Default for InvoiceDeletedEventData
impl Default for InvoiceDeletedEventData
Source§fn default() -> InvoiceDeletedEventData
fn default() -> InvoiceDeletedEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceDeletedEventData
impl<'de> Deserialize<'de> for InvoiceDeletedEventData
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 PartialEq for InvoiceDeletedEventData
impl PartialEq for InvoiceDeletedEventData
Source§impl Serialize for InvoiceDeletedEventData
impl Serialize for InvoiceDeletedEventData
impl StructuralPartialEq for InvoiceDeletedEventData
Auto Trait Implementations§
impl Freeze for InvoiceDeletedEventData
impl RefUnwindSafe for InvoiceDeletedEventData
impl Send for InvoiceDeletedEventData
impl Sync for InvoiceDeletedEventData
impl Unpin for InvoiceDeletedEventData
impl UnsafeUnpin for InvoiceDeletedEventData
impl UnwindSafe for InvoiceDeletedEventData
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