-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
PullRequestReviewComment.cs
156 lines (131 loc) · 4.79 KB
/
PullRequestReviewComment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
using System;
using System.Diagnostics;
using System.Globalization;
using Octokit.Internal;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class PullRequestReviewComment
{
public PullRequestReviewComment() { }
public PullRequestReviewComment(long id)
{
Id = id;
}
public PullRequestReviewComment(string url, long id, string nodeId, string diffHunk, string path, int? position, int? originalPosition, string commitId, string originalCommitId, User user, string body, DateTimeOffset createdAt, DateTimeOffset updatedAt, string htmlUrl, string pullRequestUrl, ReactionSummary reactions, long? inReplyToId, long? pullRequestReviewId, AuthorAssociation authorAssociation)
{
PullRequestReviewId = pullRequestReviewId;
Url = url;
Id = id;
NodeId = nodeId;
DiffHunk = diffHunk;
Path = path;
Position = position;
OriginalPosition = originalPosition;
CommitId = commitId;
OriginalCommitId = originalCommitId;
User = user;
Body = body;
CreatedAt = createdAt;
UpdatedAt = updatedAt;
HtmlUrl = htmlUrl;
PullRequestUrl = pullRequestUrl;
Reactions = reactions;
InReplyToId = inReplyToId;
AuthorAssociation = authorAssociation;
}
/// <summary>
/// URL of the comment via the API.
/// </summary>
public string Url { get; private set; }
/// <summary>
/// The comment Id.
/// </summary>
public long Id { get; private set; }
/// <summary>
/// GraphQL Node Id
/// </summary>
public string NodeId { get; private set; }
/// <summary>
/// The diff hunk the comment is about.
/// </summary>
public string DiffHunk { get; private set; }
/// <summary>
/// The relative path of the file the comment is about.
/// </summary>
public string Path { get; private set; }
/// <summary>
/// The line index in the diff.
/// </summary>
public int? Position { get; private set; }
/// <summary>
/// The comment original position.
/// </summary>
public int? OriginalPosition { get; private set; }
/// <summary>
/// The commit Id the comment is associated with.
/// </summary>
public string CommitId { get; private set; }
/// <summary>
/// The original commit Id the comment is associated with.
/// </summary>
public string OriginalCommitId { get; private set; }
/// <summary>
/// The user that created the comment.
/// </summary>
public User User { get; private set; }
/// <summary>
/// The text of the comment.
/// </summary>
public string Body { get; private set; }
/// <summary>
/// The date the comment was created.
/// </summary>
public DateTimeOffset CreatedAt { get; private set; }
/// <summary>
/// The date the comment was last updated.
/// </summary>
public DateTimeOffset UpdatedAt { get; private set; }
/// <summary>
/// The URL for this comment on GitHub.com
/// </summary>
public string HtmlUrl { get; private set; }
/// <summary>
/// The URL for the pull request via the API.
/// </summary>
public string PullRequestUrl { get; private set; }
/// <summary>
/// The reaction summary for this comment.
/// </summary>
public ReactionSummary Reactions { get; private set; }
/// <summary>
/// The Id of the comment this comment replys to.
/// </summary>
public long? InReplyToId { get; private set; }
/// <summary>
/// The Id of the pull request this comment belongs to.
/// </summary>
public long? PullRequestReviewId { get; private set; }
/// <summary>
/// The comment author association with repository.
/// </summary>
public StringEnum<AuthorAssociation> AuthorAssociation { get; private set; }
internal string DebuggerDisplay
{
get { return string.Format(CultureInfo.InvariantCulture, "Id: {0}, Path: {1}, User: {2}, Url: {3}", Id, Path, User.DebuggerDisplay, Url); }
}
}
public enum PullRequestReviewCommentSort
{
/// <summary>
/// Sort by create date (default)
/// </summary>
[Parameter(Value = "created")]
Created,
/// <summary>
/// Sort by the date of the last update
/// </summary>
[Parameter(Value = "updated")]
Updated
}
}