Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PullRequestComment

import type { PullRequestComment } from "https://googleapis.deno.dev/v1/securesourcemanager:v1.ts";

PullRequestComment represents a comment on a pull request.

interface PullRequestComment {
code?: Code;
comment?: Comment;
readonly createTime?: Date;
name?: string;
review?: Review;
readonly updateTime?: Date;
}

§Properties

§
code?: Code
[src]

Optional. The comment on a code line.

§
comment?: Comment
[src]

Optional. The general pull request comment.

§
readonly createTime?: Date
[src]

Output only. Creation timestamp.

§
name?: string
[src]

Identifier. Unique identifier for the pull request comment. The comment id is generated by the server. Format: projects/{project}/locations/{location}/repositories/{repository}/pullRequests/{pull_request}/pullRequestComments/{comment_id}

§
review?: Review
[src]

Optional. The review summary comment.

§
readonly updateTime?: Date
[src]

Output only. Last updated timestamp.