Struct stripe::ListCustomerBalanceTransactions
source · pub struct ListCustomerBalanceTransactions<'a> {
pub expand: &'a [&'a str],
pub ending_before: Option<CustomerBalanceTransactionId>,
pub limit: Option<u64>,
pub starting_after: Option<CustomerBalanceTransactionId>,
}
Expand description
The parameters for CustomerBalanceTransaction::list
.
Fields§
§expand: &'a [&'a str]
Specifies which fields in the response should be expanded.
ending_before: Option<CustomerBalanceTransactionId>
A cursor for use in pagination.
ending_before
is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 objects,
starting with obj_bar
, your subsequent call can include
ending_before=obj_bar
in order to fetch the previous page of the list.
limit: Option<u64>
A limit on the number of objects to be returned.
Limit can range between 1 and 100, and the default is 10.
starting_after: Option<CustomerBalanceTransactionId>
A cursor for use in pagination.
starting_after
is an object ID that defines your place in the list.
For instance, if you make a list request and receive 100 objects,
ending with obj_foo
, your subsequent call can include
starting_after=obj_foo
in order to fetch the next page of the list.
Trait Implementations§
source§impl<'a> Clone for ListCustomerBalanceTransactions<'a>
impl<'a> Clone for ListCustomerBalanceTransactions<'a>
source§fn clone(&self) -> ListCustomerBalanceTransactions<'a>
fn clone(&self) -> ListCustomerBalanceTransactions<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for ListCustomerBalanceTransactions<'a>
impl<'a> Debug for ListCustomerBalanceTransactions<'a>
source§impl<'a> Default for ListCustomerBalanceTransactions<'a>
impl<'a> Default for ListCustomerBalanceTransactions<'a>
source§fn default() -> ListCustomerBalanceTransactions<'a>
fn default() -> ListCustomerBalanceTransactions<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListCustomerBalanceTransactions<'a>
impl<'a> RefUnwindSafe for ListCustomerBalanceTransactions<'a>
impl<'a> Send for ListCustomerBalanceTransactions<'a>
impl<'a> Sync for ListCustomerBalanceTransactions<'a>
impl<'a> Unpin for ListCustomerBalanceTransactions<'a>
impl<'a> UnwindSafe for ListCustomerBalanceTransactions<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)