Module Values.AuditEventFieldSource

Fields for audit event.

Sourcetype nonrec t = {
  1. eventFieldId : AuditEventFieldId.t option;
    (*

    Unique identifier of field in an Audit History entry.

    *)
  2. oldValue : AuditEventFieldValueUnion.t option;
    (*

    Union of potential field value types.

    *)
  3. newValue : AuditEventFieldValueUnion.t option;
    (*

    Union of potential field value types.

    *)
}
Sourceval make : ?eventFieldId:??? -> ?oldValue:??? -> ?newValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AuditEventFieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of AuditEventFieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) 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