mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Used to filter pull request review comments.
|
|
/// </summary>
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class PullRequestReviewCommentRequest : RequestParameters
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PullRequestReviewCommentRequest"/> class.
|
|
/// </summary>
|
|
public PullRequestReviewCommentRequest()
|
|
{
|
|
// Default arguments
|
|
Sort = PullRequestReviewCommentSort.Created;
|
|
Direction = SortDirection.Ascending;
|
|
Since = null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Can be either created or updated. Default: created.
|
|
/// </summary>
|
|
public PullRequestReviewCommentSort Sort { get; set; }
|
|
|
|
/// <summary>
|
|
/// Can be either asc or desc. Default: asc.
|
|
/// </summary>
|
|
public SortDirection Direction { get; set; }
|
|
|
|
/// <summary>
|
|
/// Only comments updated at or after this time are returned. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
|
|
/// </summary>
|
|
public DateTimeOffset? Since { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get { return string.Format(CultureInfo.InvariantCulture, "Sort: {0}, Direction: {1}, Since: {2}", Sort, Direction, Since); }
|
|
}
|
|
}
|
|
}
|