pub struct WebhookDispatchPaymentOrderWebhookEventPayload {
pub webhook_event_uid: Uuid,
pub event_timestamp: DateTime<Utc>,
pub account_holder_uid: Uuid,
pub content: PaymentOrderWebhookEventPayload,
}Expand description
Webhook payload dispatched in response to an event occurring
Fields§
§webhook_event_uid: UuidUnique identifier representing an event occurring for an account holder
event_timestamp: DateTime<Utc>Timestamp indicating when the webhook event occurred
account_holder_uid: UuidAn account holder for which an event has occurred
content: PaymentOrderWebhookEventPayloadWebhook event payload indicating operation success or failure
Trait Implementations§
Source§impl Clone for WebhookDispatchPaymentOrderWebhookEventPayload
impl Clone for WebhookDispatchPaymentOrderWebhookEventPayload
Source§fn clone(&self) -> WebhookDispatchPaymentOrderWebhookEventPayload
fn clone(&self) -> WebhookDispatchPaymentOrderWebhookEventPayload
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<'de> Deserialize<'de> for WebhookDispatchPaymentOrderWebhookEventPayload
impl<'de> Deserialize<'de> for WebhookDispatchPaymentOrderWebhookEventPayload
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 WebhookDispatchPaymentOrderWebhookEventPayload
impl PartialEq for WebhookDispatchPaymentOrderWebhookEventPayload
Source§fn eq(&self, other: &WebhookDispatchPaymentOrderWebhookEventPayload) -> bool
fn eq(&self, other: &WebhookDispatchPaymentOrderWebhookEventPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WebhookDispatchPaymentOrderWebhookEventPayload
impl StructuralPartialEq for WebhookDispatchPaymentOrderWebhookEventPayload
Auto Trait Implementations§
impl Freeze for WebhookDispatchPaymentOrderWebhookEventPayload
impl RefUnwindSafe for WebhookDispatchPaymentOrderWebhookEventPayload
impl Send for WebhookDispatchPaymentOrderWebhookEventPayload
impl Sync for WebhookDispatchPaymentOrderWebhookEventPayload
impl Unpin for WebhookDispatchPaymentOrderWebhookEventPayload
impl UnwindSafe for WebhookDispatchPaymentOrderWebhookEventPayload
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