pub struct TransferRepaymentListResponse {
pub repayments: Vec<TransferRepayment>,
pub request_id: String,
}Expand description
Defines the response schema for /transfer/repayments/list
Fields§
§repayments: Vec<TransferRepayment>§request_id: StringA 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 TransferRepaymentListResponse
impl Clone for TransferRepaymentListResponse
Source§fn clone(&self) -> TransferRepaymentListResponse
fn clone(&self) -> TransferRepaymentListResponse
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 Default for TransferRepaymentListResponse
impl Default for TransferRepaymentListResponse
Source§fn default() -> TransferRepaymentListResponse
fn default() -> TransferRepaymentListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferRepaymentListResponse
impl<'de> Deserialize<'de> for TransferRepaymentListResponse
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 TransferRepaymentListResponse
impl RefUnwindSafe for TransferRepaymentListResponse
impl Send for TransferRepaymentListResponse
impl Sync for TransferRepaymentListResponse
impl Unpin for TransferRepaymentListResponse
impl UnwindSafe for TransferRepaymentListResponse
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