Module Values.ApprovalRuleEventMetadataSource

Returns information about an event for an approval rule.

Sourcetype nonrec t = {
  1. approvalRuleName : ApprovalRuleName.t option;
    (*

    The name of the approval rule.

    *)
  2. approvalRuleId : ApprovalRuleId.t option;
    (*

    The system-generated ID of the approval rule.

    *)
  3. approvalRuleContent : ApprovalRuleContent.t option;
    (*

    The content of the approval rule.

    *)
}
Sourceval make : ?approvalRuleName:??? -> ?approvalRuleId:??? -> ?approvalRuleContent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApprovalRuleName.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