Class CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters
Get all the comments for a specific issue... include:: ../../../../_snippets/not-backward-compatible.rst
public class CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters
- Inheritance
-
CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters
- Inherited Members
Properties
Limit
Add limit=20
to limit the results count (together with the offset to support pagination).
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Offset
Add offset=20
to get partial results (together with the limit to support pagination).
[QueryParameter("offset")]
public int? Offset { get; set; }
Property Value
- int?
SortBy
Sort issue comments by specified fields. Separate multiple values with commas. To sort in descending order add a -
(minus sign) before the sort criteria. For example: sortBy=createdAt,-updatedAt
. Possible values: createdAt
, updatedAt
, createdBy
.
[Obsolete("This property is deprecated, use SortByAsGetSortByQueryParameterType instead")]
[QueryParameter("sortBy")]
public string[]? SortBy { get; set; }
Property Value
- string[]
SortByAsGetSortByQueryParameterType
Sort issue comments by specified fields. Separate multiple values with commas. To sort in descending order add a -
(minus sign) before the sort criteria. For example: sortBy=createdAt,-updatedAt
. Possible values: createdAt
, updatedAt
, createdBy
.
[QueryParameter("sortBy")]
public GetSortByQueryParameterType[]? SortByAsGetSortByQueryParameterType { get; set; }