pub struct WebhookDispatchFeedItem {
pub webhook_event_uid: Uuid,
pub event_timestamp: DateTime<Utc>,
pub account_holder_uid: Uuid,
pub content: FeedItem,
}
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: FeedItem
An item from the account holders’ transaction feed
Trait Implementations§
Source§impl Clone for WebhookDispatchFeedItem
impl Clone for WebhookDispatchFeedItem
Source§fn clone(&self) -> WebhookDispatchFeedItem
fn clone(&self) -> WebhookDispatchFeedItem
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 WebhookDispatchFeedItem
impl Debug for WebhookDispatchFeedItem
Source§impl<'de> Deserialize<'de> for WebhookDispatchFeedItem
impl<'de> Deserialize<'de> for WebhookDispatchFeedItem
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 WebhookDispatchFeedItem
impl PartialEq for WebhookDispatchFeedItem
impl StructuralPartialEq for WebhookDispatchFeedItem
Auto Trait Implementations§
impl Freeze for WebhookDispatchFeedItem
impl RefUnwindSafe for WebhookDispatchFeedItem
impl Send for WebhookDispatchFeedItem
impl Sync for WebhookDispatchFeedItem
impl Unpin for WebhookDispatchFeedItem
impl UnwindSafe for WebhookDispatchFeedItem
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