Module Values.RequestMetadataSource

Metadata that is associated with a code review. This applies to both pull request and repository analysis code reviews.

Sourcetype nonrec t = {
  1. requestId : RequestId.t option;
    (*

    The ID of the request. This is required for a pull request code review.

    *)
  2. requester : Requester.t option;
    (*

    An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

    *)
  3. eventInfo : EventInfo.t option;
    (*

    Information about the event associated with a code review.

    *)
  4. vendorName : VendorName.t option;
    (*

    The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

    *)
}
Sourceval make : ?requestId:??? -> ?requester:??? -> ?eventInfo:??? -> ?vendorName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RequestId.t | `Structure of (string * [> `String of EventName.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