pub struct WebhookDispatchPaymentOrder {
pub webhook_event_uid: Uuid,
pub event_timestamp: DateTime<Utc>,
pub account_holder_uid: Uuid,
pub content: PaymentOrder,
}
Expand description
Webhook payload dispatched in response to an event occurring
Fields§
§webhook_event_uid: Uuid
Unique identifier representing an event occurring for an account holder
event_timestamp: DateTime<Utc>
Timestamp indicating when the webhook event occurred
account_holder_uid: Uuid
An account holder for which an event has occurred
content: PaymentOrder
A payment instruction to be carried out at a specific point in time
Trait Implementations§
Source§impl Clone for WebhookDispatchPaymentOrder
impl Clone for WebhookDispatchPaymentOrder
Source§fn clone(&self) -> WebhookDispatchPaymentOrder
fn clone(&self) -> WebhookDispatchPaymentOrder
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 Debug for WebhookDispatchPaymentOrder
impl Debug for WebhookDispatchPaymentOrder
Source§impl<'de> Deserialize<'de> for WebhookDispatchPaymentOrder
impl<'de> Deserialize<'de> for WebhookDispatchPaymentOrder
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 Eq for WebhookDispatchPaymentOrder
impl StructuralPartialEq for WebhookDispatchPaymentOrder
Auto Trait Implementations§
impl Freeze for WebhookDispatchPaymentOrder
impl RefUnwindSafe for WebhookDispatchPaymentOrder
impl Send for WebhookDispatchPaymentOrder
impl Sync for WebhookDispatchPaymentOrder
impl Unpin for WebhookDispatchPaymentOrder
impl UnwindSafe for WebhookDispatchPaymentOrder
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