Struct stripe::ListSetupIntents [−][src]
pub struct ListSetupIntents<'a> {
pub created: Option<RangeQuery<Timestamp>>,
pub customer: Option<CustomerId>,
pub ending_before: Option<SetupIntentId>,
pub expand: &'a [&'a str],
pub limit: Option<u64>,
pub payment_method: Option<PaymentMethodId>,
pub starting_after: Option<SetupIntentId>,
}
Expand description
The parameters for SetupIntent::list
.
Fields
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 SetupIntents for the customer specified by this customer ID.
ending_before: Option<SetupIntentId>
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.
payment_method: Option<PaymentMethodId>
Only return SetupIntents associated with the specified payment method.
starting_after: Option<SetupIntentId>
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
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for ListSetupIntents<'a>
impl<'a> Send for ListSetupIntents<'a>
impl<'a> Sync for ListSetupIntents<'a>
impl<'a> Unpin for ListSetupIntents<'a>
impl<'a> UnwindSafe for ListSetupIntents<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more