Struct plaid::deposit_switch::GetDepositSwitchResponse [−][src]
Fields
request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
deposit_switch: StringThe ID of the deposit switch
target_account_id: Option<String>The ID of the bank account the direct deposit was switched to
target_item_id: Option<String>The ID of the Item the direct deposit was switched to.
state: StringThe state of the deposit switch. Possible values: initialized, completed, error
account_has_multiple_allocations: Option<bool>When true, user’s direct deposit goes to multiple banks. When false, user’s direct deposit only goes to the target account. Always null if the deposit switch has not been completed.
is_allocated_remainder: Option<bool>When true, the target account is allocated the remainder of direct deposit after all other allocations have been deducted. When false, user’s direct deposit is allocated as a percent or amount. Always null if the deposit switch has not been completed.
percent_allocated: Option<i32>The percentage of direct deposit allocated to the target account. Always null if the target account is not allocated a percentage or if the deposit switch has not been completed or if is_allocated_remainder is true.
amount_allocated: Option<f64>The dollar amount of direct deposit allocated to the target account. Always null if the target account is not allocated an amount or if the deposit switch has not been completed.
date_created: NaiveDateISO8601 date the deposit switch was created.
date_completed: Option<NaiveDate>ISO8601 date the deposit switch was completed. Always null if the deposit switch has not been completed.
Trait Implementations
impl Clone for GetDepositSwitchResponse[src]
fn clone(&self) -> GetDepositSwitchResponse[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for GetDepositSwitchResponse[src]
impl<'de> Deserialize<'de> for GetDepositSwitchResponse[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for GetDepositSwitchResponse[src]
impl Send for GetDepositSwitchResponse[src]
impl Sync for GetDepositSwitchResponse[src]
impl Unpin for GetDepositSwitchResponse[src]
impl UnwindSafe for GetDepositSwitchResponse[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>,