pub struct GetNewPayments {
pub start_index: Option<PaymentCreatedIndex>,
pub limit: Option<u16>,
}Expand description
Sync a batch of new payments to local storage.
Results are returned in ascending (created_at, payment_id) order.
Fields§
§start_index: Option<PaymentCreatedIndex>Optional PaymentCreatedIndex 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 GetNewPayments
impl Debug for GetNewPayments
Source§impl<'de> Deserialize<'de> for GetNewPayments
impl<'de> Deserialize<'de> for GetNewPayments
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetNewPayments, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetNewPayments, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetNewPayments
impl PartialEq for GetNewPayments
Source§impl Serialize for GetNewPayments
impl Serialize for GetNewPayments
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetNewPayments
Auto Trait Implementations§
impl Freeze for GetNewPayments
impl RefUnwindSafe for GetNewPayments
impl Send for GetNewPayments
impl Sync for GetNewPayments
impl Unpin for GetNewPayments
impl UnsafeUnpin for GetNewPayments
impl UnwindSafe for GetNewPayments
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