pub struct PaymentListApiResponse {
pub next_cursor: Option<String>,
pub data: Option<Vec<PaymentSummaryApiSchema>>,
pub prev_cursor: Option<String>,
}
Fields§
§next_cursor: Option<String>
§data: Option<Vec<PaymentSummaryApiSchema>>
§prev_cursor: Option<String>
Trait Implementations§
Source§impl Debug for PaymentListApiResponse
impl Debug for PaymentListApiResponse
Source§impl Default for PaymentListApiResponse
impl Default for PaymentListApiResponse
Source§fn default() -> PaymentListApiResponse
fn default() -> PaymentListApiResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaymentListApiResponse
impl<'de> Deserialize<'de> for PaymentListApiResponse
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 PaymentListApiResponse
impl Display for PaymentListApiResponse
Auto Trait Implementations§
impl Freeze for PaymentListApiResponse
impl RefUnwindSafe for PaymentListApiResponse
impl Send for PaymentListApiResponse
impl Sync for PaymentListApiResponse
impl Unpin for PaymentListApiResponse
impl UnwindSafe for PaymentListApiResponse
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