pub struct BeaconDuplicateDetectedWebhook {
pub beacon_duplicate_id: String,
pub environment: WebhookEnvironmentValues,
pub webhook_code: String,
pub webhook_type: String,
}
Expand description
Fired when a Beacon User created within your organization matches one of your existing users.
Fields§
§beacon_duplicate_id: String
The ID of the associated Beacon Duplicate.
environment: WebhookEnvironmentValues
The Plaid environment the webhook was sent from
webhook_code: String
DUPLICATE_DETECTED
webhook_type: String
BEACON
Trait Implementations§
Source§impl Clone for BeaconDuplicateDetectedWebhook
impl Clone for BeaconDuplicateDetectedWebhook
Source§fn clone(&self) -> BeaconDuplicateDetectedWebhook
fn clone(&self) -> BeaconDuplicateDetectedWebhook
Returns a copy 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 BeaconDuplicateDetectedWebhook
impl<'de> Deserialize<'de> for BeaconDuplicateDetectedWebhook
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
Auto Trait Implementations§
impl Freeze for BeaconDuplicateDetectedWebhook
impl RefUnwindSafe for BeaconDuplicateDetectedWebhook
impl Send for BeaconDuplicateDetectedWebhook
impl Sync for BeaconDuplicateDetectedWebhook
impl Unpin for BeaconDuplicateDetectedWebhook
impl UnwindSafe for BeaconDuplicateDetectedWebhook
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