Struct plaid_openapi::model::TransactionsSyncResponse  
source · [−]pub struct TransactionsSyncResponse {
    pub added: Vec<Transaction>,
    pub modified: Vec<Transaction>,
    pub removed: Vec<RemovedTransaction>,
    pub next_cursor: String,
    pub has_more: bool,
    pub request_id: RequestId,
}Fields
added: Vec<Transaction>Transactions that have been added to the item since cursor ordered by ascending last modified time.
modified: Vec<Transaction>Transactions that have been modified on the item since cursor ordered by ascending last modified time.
removed: Vec<RemovedTransaction>Transactions that have been removed from the item since cursor ordered by ascending last modified time.
next_cursor: StringCursor used for fetching any future updates after the latest update provided in this response.
has_more: boolRepresents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with cursor set to next_cursor.
request_id: RequestIdA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations
sourceimpl Debug for TransactionsSyncResponse
 
impl Debug for TransactionsSyncResponse
sourceimpl<'de> Deserialize<'de> for TransactionsSyncResponse
 
impl<'de> Deserialize<'de> for TransactionsSyncResponse
sourcefn 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
sourceimpl Serialize for TransactionsSyncResponse
 
impl Serialize for TransactionsSyncResponse
Auto Trait Implementations
impl RefUnwindSafe for TransactionsSyncResponse
impl Send for TransactionsSyncResponse
impl Sync for TransactionsSyncResponse
impl Unpin for TransactionsSyncResponse
impl UnwindSafe for TransactionsSyncResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more