Module Values.PutRepositoryTriggersInputSource

Represents the input of a put repository triggers operation.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t;
    (*

    The name of the repository where you want to create or update the trigger.

    *)
  2. triggers : RepositoryTriggersList.t;
    (*

    The JSON block of configuration information for each trigger.

    *)
}
Sourceval context_ : string
Sourceval make : repositoryName:RepositoryName.t -> triggers:RepositoryTriggersList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Enum of string | `String of BranchName.t ] list | `String of RepositoryTriggerName.t ]) list ] list | `String of RepositoryName.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