pub struct Application {
    pub application_id: ApplicationID,
    pub name: String,
    pub created_at: Option<String>,
    pub join_date: String,
    pub logo_url: Option<String>,
    pub application_url: Option<String>,
    pub reason_for_access: Option<String>,
}

Fields

application_id: ApplicationID

This field will map to the application ID that is returned from /item/applications/list, or provided to the institution in an oauth redirect.

name: String

The name of the application

created_at: Option<String>

The date this application was linked in ISO 8601 (YYYY-MM-DD) format in UTC.

join_date: String

The date this application was granted production access at Plaid in ISO 8601 (YYYY-MM-DD) format in UTC.

logo_url: Option<String>

A URL that links to the application logo image.

application_url: Option<String>

The URL for the application’s website

reason_for_access: Option<String>

A string provided by the connected app stating why they use their respective enabled products.

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