Module Values.RepositorySyncEventSource

Repository sync event detail data for a sync attempt.

Sourcetype nonrec t = {
  1. event : String_.t option;
    (*

    Event detail for a repository sync attempt.

    *)
  2. externalId : String_.t option;
    (*

    The external ID of the sync event.

    *)
  3. time : Timestamp.t option;
    (*

    The time that the sync event occurred.

    *)
  4. type_ : String_.t option;
    (*

    The type of event.

    *)
}
Sourceval make : ?event:??? -> ?externalId:??? -> ?time:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Timestamp.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