Struct plaid::webhooks::WebhookVerificationKey[][src]

pub struct WebhookVerificationKey {
    pub alg: String,
    pub crv: String,
    pub kid: String,
    pub kty: String,
    pub use: String,
    pub x: String,
    pub y: String,
    pub created_at: i64,
    pub expired_at: Option<i64>,
}

A JSON Web Key (JWK) that can be used in conjunction with JWT libraries to verify Plaid webhooks

Fields

alg: String

The alg member identifies the cryptographic algorithm family used with the key.

crv: String

The crv member identifies the cryptographic curve used with the key.

kid: String

The kid (Key ID) member can be used to match a specific key. This can be used, for instance, to choose among a set of keys within the JWK during key rollover.

kty: String

The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC.

use: String

The use (public key use) parameter identifies the intended use of the public key.

x: String

The x member contains the x coordinate for the elliptic curve point.

y: String

The y member contains the y coordinate for the elliptic curve point.

created_at: i64expired_at: Option<i64>

Trait Implementations

impl Clone for WebhookVerificationKey[src]

impl Debug for WebhookVerificationKey[src]

impl<'de> Deserialize<'de> for WebhookVerificationKey[src]

Auto Trait Implementations

impl RefUnwindSafe for WebhookVerificationKey[src]

impl Send for WebhookVerificationKey[src]

impl Sync for WebhookVerificationKey[src]

impl Unpin for WebhookVerificationKey[src]

impl UnwindSafe for WebhookVerificationKey[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.