Module Values.RuleSummarySource

The summary of the rule.

Sourcetype nonrec t = {
  1. identifier : RuleId.t option;
    (*

    The ID of the rule.

    *)
  2. revision : Revision.t option;
    (*

    The revision of the rule.

    *)
  3. ruleType : RuleType.t option;
    (*

    The type of the rule.

    *)
  4. name : RuleName.t option;
    (*

    The name of the rule.

    *)
  5. targetType : RuleTargetType.t option;
    (*

    The target type of the rule.

    *)
  6. target : RuleTarget.t option;
    (*

    The target of the rule.

    *)
  7. action : RuleAction.t option;
    (*

    The action of the rule.

    *)
  8. scope : RuleScope.t option;
    (*

    The scope of the rule.

    *)
  9. updatedAt : UpdatedAt.t option;
    (*

    The timestamp at which the rule was last updated.

    *)
  10. lastUpdatedBy : UpdatedBy.t option;
    (*

    The timestamp at which the rule was last updated.

    *)
}
Sourceval make : ?identifier:??? -> ?revision:??? -> ?ruleType:??? -> ?name:??? -> ?targetType:??? -> ?target:??? -> ?action:??? -> ?scope:??? -> ?updatedAt:??? -> ?lastUpdatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RuleId.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of AssetTypeIdentifier.t ] list | `String of DomainUnitId.t ]) list ]) list | `Timestamp of UpdatedAt.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t