pub struct GetUpdatedPayments {
pub start_index: Option<PaymentUpdatedIndex>,
pub limit: Option<u16>,
}Expand description
Get a batch of payments in ascending (updated_at, payment_id) order.
Fields§
§start_index: Option<PaymentUpdatedIndex>(updated_at, id) index at which the results should start, exclusive.
Payments with an index less than or equal to this will not be returned.
limit: Option<u16>(Optional) the maximum number of results that can be returned.
Trait Implementations§
Source§impl Debug for GetUpdatedPayments
impl Debug for GetUpdatedPayments
Source§impl<'de> Deserialize<'de> for GetUpdatedPayments
impl<'de> Deserialize<'de> for GetUpdatedPayments
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 GetUpdatedPayments
impl PartialEq for GetUpdatedPayments
Source§impl Serialize for GetUpdatedPayments
impl Serialize for GetUpdatedPayments
impl StructuralPartialEq for GetUpdatedPayments
Auto Trait Implementations§
impl Freeze for GetUpdatedPayments
impl RefUnwindSafe for GetUpdatedPayments
impl Send for GetUpdatedPayments
impl Sync for GetUpdatedPayments
impl Unpin for GetUpdatedPayments
impl UnsafeUnpin for GetUpdatedPayments
impl UnwindSafe for GetUpdatedPayments
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