pub struct TransactionsRecurringGetRequest {
pub access_token: String,
pub account_ids: Option<Vec<String>>,
pub options: Option<TransactionsRecurringGetRequestOptions>,
}
Expand description
You should use this struct via [PlaidClient::transactions_recurring_get
].
On request success, this will return a [TransactionsRecurringGetResponse
].
Fields§
§access_token: String
§account_ids: Option<Vec<String>>
§options: Option<TransactionsRecurringGetRequestOptions>
Trait Implementations§
Source§impl Clone for TransactionsRecurringGetRequest
impl Clone for TransactionsRecurringGetRequest
Source§fn clone(&self) -> TransactionsRecurringGetRequest
fn clone(&self) -> TransactionsRecurringGetRequest
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<'de> Deserialize<'de> for TransactionsRecurringGetRequest
impl<'de> Deserialize<'de> for TransactionsRecurringGetRequest
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 TransactionsRecurringGetRequest
impl RefUnwindSafe for TransactionsRecurringGetRequest
impl Send for TransactionsRecurringGetRequest
impl Sync for TransactionsRecurringGetRequest
impl Unpin for TransactionsRecurringGetRequest
impl UnwindSafe for TransactionsRecurringGetRequest
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