Struct stripe::ListFileLinks [−][src]
pub struct ListFileLinks<'a> {
pub created: Option<RangeQuery<Timestamp>>,
pub ending_before: Option<FileLinkId>,
pub expand: &'a [&'a str],
pub expired: Option<bool>,
pub file: Option<FileId>,
pub limit: Option<u64>,
pub starting_after: Option<FileLinkId>,
}
Expand description
The parameters for FileLink::list
.
Fields
created: Option<RangeQuery<Timestamp>>
ending_before: Option<FileLinkId>
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.
expired: Option<bool>
Filter links by their expiration status.
By default, all links are returned.
file: Option<FileId>
Only return links for the given file.
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<FileLinkId>
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 ListFileLinks<'a>
impl<'a> Send for ListFileLinks<'a>
impl<'a> Sync for ListFileLinks<'a>
impl<'a> Unpin for ListFileLinks<'a>
impl<'a> UnwindSafe for ListFileLinks<'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