/// <summary>
 /// Returns a collection of Queue Item Comments associated to a Queue Item and
 /// all its related Queue Items.
 /// A Queue Item is related to another if it was created as a retry of a failed
 /// Queue Item. They also share the same Key.
 /// </summary>
 /// <remarks>
 /// Required permissions: Queues.View and Transactions.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='queueItemId'>
 /// The Id of the Queue Item for which the comment history is requested.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the odata-count header.
 /// </param>
 public static ODataResponseListQueueItemCommentDto GetQueueItemCommentsHistoryByQueueitemid(this IQueueItemComments operations, long queueItemId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetQueueItemCommentsHistoryByQueueitemidAsync(queueItemId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns a collection of Queue Item Comments associated to a Queue Item and
 /// all its related Queue Items.
 /// A Queue Item is related to another if it was created as a retry of a failed
 /// Queue Item. They also share the same Key.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Queues or Queues.Read.
 ///
 /// Required permissions: Queues.View and Transactions.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='queueItemId'>
 /// The Id of the Queue Item for which the comment history is requested.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the odata-count header.
 /// </param>
 public static ODataValueIEnumerableQueueItemCommentDto GetQueueItemCommentsHistoryByQueueitemid(this IQueueItemComments operations, long queueItemId, long?xUIPATHOrganizationUnitId = default(long?), string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetQueueItemCommentsHistoryByQueueitemidAsync(queueItemId, xUIPATHOrganizationUnitId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns a collection of Queue Item Comments associated to a Queue Item and
 /// all its related Queue Items.
 /// A Queue Item is related to another if it was created as a retry of a failed
 /// Queue Item. They also share the same Key.
 /// </summary>
 /// <remarks>
 /// Required permissions: Queues.View and Transactions.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='queueItemId'>
 /// The Id of the Queue Item for which the comment history is requested.
 /// </param>
 public static ODataResponseListQueueItemCommentDto GetQueueItemCommentsHistoryByQueueitemid(this IQueueItemComments operations, long queueItemId)
 {
     return(operations.GetQueueItemCommentsHistoryByQueueitemidAsync(queueItemId).GetAwaiter().GetResult());
 }