pub struct InvestmentsDefaultUpdateWebhook {
    pub webhook_type: String,
    pub webhook_code: String,
    pub item_id: ItemId,
    pub error: Option<PlaidError>,
    pub new_investments_transactions: f64,
    pub canceled_investments_transactions: f64,
}

Fields

webhook_type: String

INVESTMENTS_TRANSACTIONS

webhook_code: String

DEFAULT_UPDATE

item_id: ItemId

The item_id of the Item associated with this webhook, warning, or error

error: Option<PlaidError>

We use standard HTTP response codes for success and failure notifications, and our errors are further classified by error_type. In general, 200 HTTP codes correspond to success, 40X codes are for developer- or user-related failures, and 50X codes are for Plaid-related issues. Error fields will be null if no error has occurred.

new_investments_transactions: f64

The number of new transactions reported since the last time this webhook was fired.

canceled_investments_transactions: f64

The number of canceled transactions reported since the last time this webhook was fired.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more