ResolvePullRequestCommentsRequest
import type { ResolvePullRequestCommentsRequest } from "https://googleapis.deno.dev/v1/securesourcemanager:v1.ts";
The request to resolve multiple pull request comments.
interface ResolvePullRequestCommentsRequest {
autoFill?: boolean;
names?: string[];
}§Properties
§
autoFill?: boolean
[src]Optional. If set, at least one comment in a thread is required, rest of the comments in the same thread will be automatically updated to resolved. If unset, all comments in the same thread need be present.
§
names?: string[]
[src]Required. The names of the pull request comments to resolve. Format:
projects/{project_number}/locations/{location_id}/repositories/{repository_id}/pullRequests/{pull_request_id}/pullRequestComments/{comment_id}
Only comments from the same threads are allowed in the same request.