pub struct ListSegmentFilter {
pub fields: Option<String>,
pub exclude_fields: Option<String>,
pub count: Option<u64>,
pub offset: Option<u64>,
pub s_type: Option<String>,
pub since_created_at: Option<String>,
pub before_created_at: Option<String>,
pub since_updated_at: Option<String>,
pub before_updated_at: Option<String>,
}Expand description
================================= ITER =====================
Fields§
§fields: Option<String>A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
exclude_fields: Option<String>A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
count: Option<u64>The number of records to return. Default value is 10.
offset: Option<u64>The number of records from a collection to skip. Iterating over large collections with this parameter can be slow. Default value is 0..
s_type: Option<String>Limit results based on segment type.
since_created_at: Option<String>Restrict results to segments created after the set time. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00.
before_created_at: Option<String>Restrict results to segments created before the set time. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00.
since_updated_at: Option<String>Restrict results to segments update after the set time. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00.
before_updated_at: Option<String>Restrict results to segments update before the set time. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00.
Trait Implementations§
Source§impl Clone for ListSegmentFilter
impl Clone for ListSegmentFilter
Source§fn clone(&self) -> ListSegmentFilter
fn clone(&self) -> ListSegmentFilter
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more