Module Values.PackageGroupAllowedRepositorySource

Details about an allowed repository for a package group, including its name and origin configuration.

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

    The name of the allowed repository.

    *)
  2. originRestrictionType : PackageGroupOriginRestrictionType.t option;
    (*

    The origin configuration restriction type of the allowed repository.

    *)
}
Sourceval make : ?repositoryName:??? -> ?originRestrictionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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