Module Values.PackageVersionOriginSource

Information about how a package version was added to a repository.

Sourcetype nonrec t = {
  1. domainEntryPoint : DomainEntryPoint.t option;
    (*

    A DomainEntryPoint object that contains information about from which repository or external connection the package version was added to the domain.

    *)
  2. originType : PackageVersionOriginType.t option;
    (*

    Describes how the package version was originally added to the domain. An INTERNAL origin type means the package version was published directly to a repository in the domain. An EXTERNAL origin type means the package version was ingested from an external connection.

    *)
}
Sourceval make : ?domainEntryPoint:??? -> ?originType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of RepositoryName.t ]) 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