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