pub struct ListTransactionsResponse {
pub errors: Option<Vec<Error>>,
pub transactions: Option<Vec<Transaction>>,
pub cursor: Option<String>,
}Expand description
ListTransactionsResponse : Defines the fields that are included in the response body of a request to the ListTransactions endpoint. One of errors or transactions is present in a given response (never both).
Fields§
§errors: Option<Vec<Error>>Any errors that occurred during the request.
transactions: Option<Vec<Transaction>>An array of transactions that match your query.
cursor: Option<String>A pagination cursor for retrieving the next set of results, if any remain. Provide this value as the cursor parameter in a subsequent request to this endpoint. See Paginating results for more information.
Implementations§
Source§impl ListTransactionsResponse
impl ListTransactionsResponse
Sourcepub fn new() -> ListTransactionsResponse
pub fn new() -> ListTransactionsResponse
Defines the fields that are included in the response body of a request to the ListTransactions endpoint. One of errors or transactions is present in a given response (never both).
Trait Implementations§
Source§impl Clone for ListTransactionsResponse
impl Clone for ListTransactionsResponse
Source§fn clone(&self) -> ListTransactionsResponse
fn clone(&self) -> ListTransactionsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListTransactionsResponse
impl Debug for ListTransactionsResponse
Source§impl Default for ListTransactionsResponse
impl Default for ListTransactionsResponse
Source§fn default() -> ListTransactionsResponse
fn default() -> ListTransactionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTransactionsResponse
impl<'de> Deserialize<'de> for ListTransactionsResponse
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 PartialEq for ListTransactionsResponse
impl PartialEq for ListTransactionsResponse
Source§impl Serialize for ListTransactionsResponse
impl Serialize for ListTransactionsResponse
impl StructuralPartialEq for ListTransactionsResponse
Auto Trait Implementations§
impl Freeze for ListTransactionsResponse
impl RefUnwindSafe for ListTransactionsResponse
impl Send for ListTransactionsResponse
impl Sync for ListTransactionsResponse
impl Unpin for ListTransactionsResponse
impl UnsafeUnpin for ListTransactionsResponse
impl UnwindSafe for ListTransactionsResponse
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