package gapi-ocaml

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

    Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.

    *)
  2. comparisonValue : int64;
    (*

    Value used for this comparison.

    *)
  3. expression : string;
    (*

    Expression used for this match.

    *)
  4. matchType : string;
    (*

    Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.

    *)
  5. _type : string;
    (*

    Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.

    *)
}
val comparisonType : (t, string) GapiLens.t
val comparisonValue : (t, int64) GapiLens.t
val expression : (t, string) GapiLens.t
val matchType : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t