pub struct GetUpdatedPaymentMetadata {
pub start_index: Option<PaymentUpdatedIndex>,
pub limit: Option<u16>,
}Expand description
Get a batch of payment metadata in asc (updated_at, payment_id) order.
Fields§
§start_index: Option<PaymentUpdatedIndex>(updated_at, id) index at which the results should start, exclusive.
Metadata 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 GetUpdatedPaymentMetadata
impl Debug for GetUpdatedPaymentMetadata
Source§impl<'de> Deserialize<'de> for GetUpdatedPaymentMetadata
impl<'de> Deserialize<'de> for GetUpdatedPaymentMetadata
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetUpdatedPaymentMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetUpdatedPaymentMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GetUpdatedPaymentMetadata
impl Serialize for GetUpdatedPaymentMetadata
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 GetUpdatedPaymentMetadata
Auto Trait Implementations§
impl Freeze for GetUpdatedPaymentMetadata
impl RefUnwindSafe for GetUpdatedPaymentMetadata
impl Send for GetUpdatedPaymentMetadata
impl Sync for GetUpdatedPaymentMetadata
impl Unpin for GetUpdatedPaymentMetadata
impl UnsafeUnpin for GetUpdatedPaymentMetadata
impl UnwindSafe for GetUpdatedPaymentMetadata
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