pub struct IncomeVerificationCreateResponse {
pub income_verification_id: String,
pub request_id: String,
}
Expand description
IncomeVerificationCreateResponse defines the response schema for /income/verification/create
.
Fields§
§income_verification_id: String
ID of the verification. This ID is persisted throughout the lifetime of the verification.
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 IncomeVerificationCreateResponse
impl Clone for IncomeVerificationCreateResponse
Source§fn clone(&self) -> IncomeVerificationCreateResponse
fn clone(&self) -> IncomeVerificationCreateResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for IncomeVerificationCreateResponse
impl Default for IncomeVerificationCreateResponse
Source§fn default() -> IncomeVerificationCreateResponse
fn default() -> IncomeVerificationCreateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncomeVerificationCreateResponse
impl<'de> Deserialize<'de> for IncomeVerificationCreateResponse
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
Auto Trait Implementations§
impl Freeze for IncomeVerificationCreateResponse
impl RefUnwindSafe for IncomeVerificationCreateResponse
impl Send for IncomeVerificationCreateResponse
impl Sync for IncomeVerificationCreateResponse
impl Unpin for IncomeVerificationCreateResponse
impl UnwindSafe for IncomeVerificationCreateResponse
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