Expand description
Filter for Customer
objects based on whether their CREATED_AT
timestamps fall within a specified time range.
You can specify the time range and which timestamp to filter for. You can filter for only one time range at a time.
For each time range, the start time and end time are inclusive. If the end time is absent, it defaults to the time of the first request for the cursor.
Fields
created_at: Option<TimeRange>
The time range for filtering on the created_at
timestamp. If you use this value, you must
set the sort_field
in the CustomersSearchSort
object to CREATED_AT
.
Trait Implementations
sourceimpl Clone for SearchCustomersDateTimeFilter
impl Clone for SearchCustomersDateTimeFilter
sourcefn clone(&self) -> SearchCustomersDateTimeFilter
fn clone(&self) -> SearchCustomersDateTimeFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchCustomersDateTimeFilter
impl Debug for SearchCustomersDateTimeFilter
sourceimpl Default for SearchCustomersDateTimeFilter
impl Default for SearchCustomersDateTimeFilter
sourcefn default() -> SearchCustomersDateTimeFilter
fn default() -> SearchCustomersDateTimeFilter
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchCustomersDateTimeFilter> for SearchCustomersDateTimeFilter
impl PartialEq<SearchCustomersDateTimeFilter> for SearchCustomersDateTimeFilter
sourcefn eq(&self, other: &SearchCustomersDateTimeFilter) -> bool
fn eq(&self, other: &SearchCustomersDateTimeFilter) -> bool
impl Eq for SearchCustomersDateTimeFilter
impl StructuralEq for SearchCustomersDateTimeFilter
impl StructuralPartialEq for SearchCustomersDateTimeFilter
Auto Trait Implementations
impl RefUnwindSafe for SearchCustomersDateTimeFilter
impl Send for SearchCustomersDateTimeFilter
impl Sync for SearchCustomersDateTimeFilter
impl Unpin for SearchCustomersDateTimeFilter
impl UnwindSafe for SearchCustomersDateTimeFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.