@@ -255,7 +255,8 @@ pub struct GetDatasetConditionParams {
255255 /// The dataset code.
256256 #[ builder( setter( transform = |dataset: impl ToString | dataset. to_string( ) ) ) ]
257257 pub dataset : String ,
258- /// The optional filter by UTC date range.
258+ /// The UTC date request range with an inclusive start date and an inclusive end date.
259+ /// If `None` then will return all available dates.
259260 #[ builder( default , setter( transform = |dr: impl Into <DateRange >| Some ( dr. into( ) ) ) ) ]
260261 pub date_range : Option < DateRange > ,
261262}
@@ -278,10 +279,10 @@ pub struct DatasetConditionDetail {
278279/// The available range for a dataset.
279280#[ derive( Debug , Clone , PartialEq , Eq , Deserialize ) ]
280281pub struct DatasetRange {
281- /// The start of the available range.
282+ /// The inclusive UTC start timestamp of the available range.
282283 #[ serde( deserialize_with = "deserialize_date_time" ) ]
283284 pub start : time:: OffsetDateTime ,
284- /// The end of the available range (exclusive) .
285+ /// The exclusive UTC end timestamp of the available range.
285286 #[ serde( deserialize_with = "deserialize_date_time" ) ]
286287 pub end : time:: OffsetDateTime ,
287288 /// The available ranges for each available schema in the dataset.
@@ -306,7 +307,7 @@ pub struct GetQueryParams {
306307 pub symbols : Symbols ,
307308 /// The data record schema.
308309 pub schema : Schema ,
309- /// The request time range.
310+ /// The request range with an inclusive start and an exclusive end .
310311 #[ builder( setter( into) ) ]
311312 pub date_time_range : DateTimeRange ,
312313 /// The symbology type of the input `symbols`. Defaults to
0 commit comments