Struct stripe::generated::billing::promotion_code::ListPromotionCodes
source · pub struct ListPromotionCodes<'a> {
pub active: Option<bool>,
pub code: Option<&'a str>,
pub coupon: Option<CouponId>,
pub created: Option<RangeQuery<Timestamp>>,
pub customer: Option<CustomerId>,
pub ending_before: Option<PromotionCodeId>,
pub expand: &'a [&'a str],
pub limit: Option<u64>,
pub starting_after: Option<PromotionCodeId>,
}
Expand description
The parameters for PromotionCode::list
.
Fields§
§active: Option<bool>
Filter promotion codes by whether they are active.
code: Option<&'a str>
Only return promotion codes that have this case-insensitive code.
coupon: Option<CouponId>
Only return promotion codes for this coupon.
created: Option<RangeQuery<Timestamp>>
A filter on the list, based on the object created
field.
The value can be a string with an integer Unix timestamp, or it can be a dictionary with a number of different query options.
customer: Option<CustomerId>
Only return promotion codes that are restricted to this customer.
ending_before: Option<PromotionCodeId>
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.
expand: &'a [&'a str]
Specifies which fields in the response should be expanded.
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<PromotionCodeId>
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.
Implementations§
source§impl<'a> ListPromotionCodes<'a>
impl<'a> ListPromotionCodes<'a>
Trait Implementations§
source§impl<'a> Clone for ListPromotionCodes<'a>
impl<'a> Clone for ListPromotionCodes<'a>
source§fn clone(&self) -> ListPromotionCodes<'a>
fn clone(&self) -> ListPromotionCodes<'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 ListPromotionCodes<'a>
impl<'a> Debug for ListPromotionCodes<'a>
source§impl<'a> Default for ListPromotionCodes<'a>
impl<'a> Default for ListPromotionCodes<'a>
source§fn default() -> ListPromotionCodes<'a>
fn default() -> ListPromotionCodes<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListPromotionCodes<'a>
impl<'a> RefUnwindSafe for ListPromotionCodes<'a>
impl<'a> Send for ListPromotionCodes<'a>
impl<'a> Sync for ListPromotionCodes<'a>
impl<'a> Unpin for ListPromotionCodes<'a>
impl<'a> UnwindSafe for ListPromotionCodes<'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
)