pub struct CreditSessionsGetResponse {
pub request_id: String,
pub sessions: Option<Vec<CreditSession>>,
}Expand description
CreditSessionsGetResponse defines the response schema for /credit/sessions/get
Fields§
§request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
sessions: Option<Vec<CreditSession>>A list of Link sessions for the user. Sessions will be sorted in reverse chronological order.
Trait Implementations§
Source§impl Clone for CreditSessionsGetResponse
impl Clone for CreditSessionsGetResponse
Source§fn clone(&self) -> CreditSessionsGetResponse
fn clone(&self) -> CreditSessionsGetResponse
Returns a duplicate 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 Debug for CreditSessionsGetResponse
impl Debug for CreditSessionsGetResponse
Source§impl Default for CreditSessionsGetResponse
impl Default for CreditSessionsGetResponse
Source§fn default() -> CreditSessionsGetResponse
fn default() -> CreditSessionsGetResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreditSessionsGetResponse
impl<'de> Deserialize<'de> for CreditSessionsGetResponse
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 CreditSessionsGetResponse
impl Display for CreditSessionsGetResponse
Auto Trait Implementations§
impl Freeze for CreditSessionsGetResponse
impl RefUnwindSafe for CreditSessionsGetResponse
impl Send for CreditSessionsGetResponse
impl Sync for CreditSessionsGetResponse
impl Unpin for CreditSessionsGetResponse
impl UnwindSafe for CreditSessionsGetResponse
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