Module Trakeva.Action (.ml)

module Action: sig .. end

type t = 
| Set of Trakeva.Key_in_collection.t * string
| Unset of Trakeva.Key_in_collection.t
| Sequence of t list
| Check of Trakeva.Key_in_collection.t * string option
val set : ?collection:string -> key:string -> string -> t
val seq : t list -> t
val contains : ?collection:string -> key:string -> string -> t
val is_not_set : ?collection:string -> string -> t
val unset : ?collection:string -> string -> t
val to_string : t -> string