package fred

  1. Overview
  2. Docs
type releases = {
  1. realtime_start : string;
  2. realtime_end : string;
  3. order_by : string option;
  4. sort_order : string option;
  5. count : int option;
  6. offset : int option;
  7. limit : int option;
  8. releases : release list;
}

Container for releases dates data

and release = {
  1. id : int;
  2. release_realtime_start : string;
  3. release_realtime_end : string;
  4. name : string;
  5. press_release : bool;
  6. notes : string option;
}
val pp_releases : Ppx_deriving_runtime.Format.formatter -> releases -> Ppx_deriving_runtime.unit
val show_releases : releases -> Ppx_deriving_runtime.string
val pp_release : Ppx_deriving_runtime.Format.formatter -> release -> Ppx_deriving_runtime.unit
val show_release : release -> Ppx_deriving_runtime.string
type order_by =
  1. | ReleaseId
  2. | Name
  3. | PressRelease
  4. | RealtimeStart
  5. | RealtimeEnd

Release's order by options

val order_by_to_string : order_by -> string
OCaml

Innovation. Community. Security.