package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. max : int;
    (*

    The age range's upper bound, if any. Possible values include, but are not limited to, the following:

    • "17" - for age 17
    • "20" - for age 20
    *)
  2. min : int;
    (*

    The age range's lower bound, if any. Possible values include, but are not limited to, the following:

    • "21" - for age 21
    • "18" - for age 18
    *)
}
val max : (t, int) GapiLens.t
val min : (t, int) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t