Module Values.RepositoryTriggerExecutionFailureSource

A trigger failed to run.

Sourcetype nonrec t = {
  1. trigger : RepositoryTriggerName.t option;
    (*

    The name of the trigger that did not run.

    *)
  2. failureMessage : RepositoryTriggerExecutionFailureMessage.t option;
    (*

    Message information about the trigger that did not run.

    *)
}
Sourceval make : ?trigger:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryTriggerName.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