pub type Since = Option<DateTime<Utc>>;Expand description
Optional timestamp used for fetching only records created after a certain point in time.
This is used for pagination or incremental updates.
If None, the endpoint returns results from the beginning (or all available games).
Aliased Type§
pub enum Since {
None,
Some(DateTime<Utc>),
}