package ask-integrator

  1. Overview
  2. Docs
type t = {
  1. service_mapper : string;
  2. label : string;
  3. questionnaire : string;
  4. created_at : Ptime.t;
  5. updated_at : Ptime.t;
}
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val updated_at : t -> Ptime.t
val created_at : t -> Ptime.t
val questionnaire : t -> string
val label : t -> string
val service_mapper : t -> string
module Fields : sig ... end
val t : t Caqti_type.t
val create : service_mapper:string -> ?label:string -> questionnaire:string -> ?created_at:Ptime.t -> ?updated_at:Ptime.t -> unit -> t
val equal : t -> t -> bool