Module Values.ApprovalStateChangedEventMetadataSource

Returns information about a change in the approval state for a pull request.

Sourcetype nonrec t = {
  1. revisionId : RevisionId.t option;
    (*

    The revision ID of the pull request when the approval state changed.

    *)
  2. approvalStatus : ApprovalState.t option;
    (*

    The approval status for the pull request.

    *)
}
Sourceval make : ?revisionId:??? -> ?approvalStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RevisionId.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