Skip to content

Commit 268d39e

Browse files
authored
Change type of PullRequestReviewComment InReplyToId from int to long (#702)
Closes #700
1 parent 6c3096d commit 268d39e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Octokit.Webhooks/Models/PullRequestReviewComment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public sealed record PullRequestReviewComment
8484
public StringEnum<Side> Side { get; init; } = null!;
8585

8686
[JsonPropertyName("in_reply_to_id")]
87-
public int? InReplyToId { get; init; }
87+
public long? InReplyToId { get; init; }
8888

8989
[JsonPropertyName("subject_type")]
9090
[JsonConverter(typeof(StringEnumConverter<PullRequestReviewCommentSubjectType>))]

0 commit comments

Comments
 (0)