Struct plaid::item::Item [−][src]
Metadata about the Item.
Fields
item_id: StringThe Plaid Item ID.
institution_id: Option<String>The Plaid Institution ID associated with the Item. Field is null for Items created via Same Day Micro-deposits.
webhook: Option<String>The URL registered to receive webhooks for the Item.
error: Option<ErrorResponse>We use standard HTTP response codes for success and failure notifications, and our errors are further classified by error_type.
available_products: Vec<String>A list of products available for the Item that have not yet been accessed.
billed_products: Vec<String>A list of products that have been billed for the Item. Note - billed_products is populated in all environments but only requests in Production are billed.
consent_expiration_time: Option<DateTime<Utc>>The RFC 3339 timestamp after which the consent provided by the end user will expire.
update_type: StringIndicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication.
Trait Implementations
impl Clone for Item[src]
impl Debug for Item[src]
impl<'de> Deserialize<'de> for Item[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for Item[src]
impl Send for Item[src]
impl Sync for Item[src]
impl Unpin for Item[src]
impl UnwindSafe for Item[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,