pub struct AuthGetResponse {
pub accounts: Vec<AccountBase>,
pub item: Item,
pub numbers: AuthGetNumbers,
pub request_id: String,
}
Expand description
AuthGetResponse defines the response schema for /auth/get
Fields§
§accounts: Vec<AccountBase>
The accounts
for which numbers are being retrieved.
item: Item
Metadata about the Item.
numbers: AuthGetNumbers
An object containing identifying numbers used for making electronic transfers to and from the accounts
. The identifying number type (ACH, EFT, IBAN, or BACS) used will depend on the country of the account. An account may have more than one number type. If a particular identifying number type is not used by any accounts
for which data has been requested, the array for that type will be empty.
request_id: String
A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations§
Source§impl Clone for AuthGetResponse
impl Clone for AuthGetResponse
Source§fn clone(&self) -> AuthGetResponse
fn clone(&self) -> AuthGetResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthGetResponse
impl Debug for AuthGetResponse
Source§impl<'de> Deserialize<'de> for AuthGetResponse
impl<'de> Deserialize<'de> for AuthGetResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AuthGetResponse
impl Display for AuthGetResponse
Auto Trait Implementations§
impl Freeze for AuthGetResponse
impl RefUnwindSafe for AuthGetResponse
impl Send for AuthGetResponse
impl Sync for AuthGetResponse
impl Unpin for AuthGetResponse
impl UnwindSafe for AuthGetResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more