package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module EventDetails.EventConditionsSource

Sourcetype 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.

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