pub struct TransactionStream {
    pub account_id: String,
    pub stream_id: String,
    pub category_id: String,
    pub category: Vec<String>,
    pub description: String,
    pub first_date: String,
    pub last_date: String,
    pub frequency: RecurringTransactionFrequency,
    pub transaction_ids: Vec<String>,
    pub average_amount: TransactionStreamAmount,
    pub is_active: bool,
}

Fields

account_id: String

The ID of the account to which the stream belongs

stream_id: String

A unique id for the stream

category_id: String

The ID of the category to which this transaction belongs. See Categories.

category: Vec<String>

A hierarchical array of the categories to which this transaction belongs. See Categories.

description: String

A description of the transaction stream.

first_date: String

The posted date of the earliest transaction in the stream.

last_date: String

The posted date of the latest transaction in the stream.

frequency: RecurringTransactionFrequency

describes the frequency of the transaction stream.

transaction_ids: Vec<String>

An array of Plaid transaction IDs belonging to the stream, sorted by posted date.

average_amount: TransactionStreamAmount

Object with data pertaining to an amount on the transaction stream.

is_active: bool

indicates whether the transaction stream is still live.

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