package fred

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

Container for tags data

and tag = {
  1. name : string;
  2. group_id : string;
  3. notes : string option;
  4. created : string;
  5. popularity : int;
  6. series_count : int;
}
val tags_of_yojson : Yojson.Safe.t -> tags Ppx_deriving_yojson_runtime.error_or
val tag_of_yojson : Yojson.Safe.t -> tag Ppx_deriving_yojson_runtime.error_or
val pp_tags : Ppx_deriving_runtime.Format.formatter -> tags -> Ppx_deriving_runtime.unit
val pp_tag : Ppx_deriving_runtime.Format.formatter -> tag -> Ppx_deriving_runtime.unit
type order_by =
  1. | SeriesCount
  2. | Popularity
  3. | Created
  4. | Name
  5. | GroupId

Tags' order by options

type tag_group_id =
  1. | Default
  2. | Frequency
  3. | GeneralOrConcept
  4. | Geography
  5. | GeographyType
  6. | Release
  7. | SeasonalAdjustment
  8. | Source

Tags' order tag group id options

val order_by_to_string : order_by -> string
val tag_group_id_to_string : tag_group_id -> string
OCaml

Innovation. Community. Security.