pub struct InvoicePublishedEventData {
pub type: Option<Option<String>>,
pub id: Option<String>,
pub object: Option<Box<InvoicePublishedEventObject>>,
}Fields§
§type: Option<Option<String>>Name of the affected object’s type, \"invoice\".
id: Option<String>ID of the affected invoice.
object: Option<Box<InvoicePublishedEventObject>>Implementations§
Source§impl InvoicePublishedEventData
impl InvoicePublishedEventData
pub fn new() -> InvoicePublishedEventData
Trait Implementations§
Source§impl Clone for InvoicePublishedEventData
impl Clone for InvoicePublishedEventData
Source§fn clone(&self) -> InvoicePublishedEventData
fn clone(&self) -> InvoicePublishedEventData
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 InvoicePublishedEventData
impl Debug for InvoicePublishedEventData
Source§impl Default for InvoicePublishedEventData
impl Default for InvoicePublishedEventData
Source§fn default() -> InvoicePublishedEventData
fn default() -> InvoicePublishedEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoicePublishedEventData
impl<'de> Deserialize<'de> for InvoicePublishedEventData
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 InvoicePublishedEventData
Auto Trait Implementations§
impl Freeze for InvoicePublishedEventData
impl RefUnwindSafe for InvoicePublishedEventData
impl Send for InvoicePublishedEventData
impl Sync for InvoicePublishedEventData
impl Unpin for InvoicePublishedEventData
impl UnsafeUnpin for InvoicePublishedEventData
impl UnwindSafe for InvoicePublishedEventData
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