/// <summary>
        /// Returns orders in which the user was involved and for which feedback
        /// is still needed from either the buyer or seller.
        /// </summary>
        ///
        /// <param name="Sort">
        /// Specifies how the returned feedback items should be sorted.
        /// Valid values are Title, EndTime, QuestionCount, FeedbackLeft,
        /// FeedbackReceivedDescending, UserIDDescending, TitleDescending,
        /// and EndTimeDescending.
        /// </param>
        ///
        /// <param name="Pagination">
        /// Specifies the number of entries per page and the page number to return
        /// in the result set.
        /// </param>
        ///
        public PaginatedTransactionArrayType GetItemsAwaitingFeedback(ItemSortTypeCodeType Sort, PaginationType Pagination)
        {
            this.Sort       = Sort;
            this.Pagination = Pagination;

            Execute();
            return(ApiResponse.ItemsAwaitingFeedback);
        }
		/// <summary>
		/// Returns orders in which the user was involved and for which feedback
		/// is still needed from either the buyer or seller.
		/// </summary>
		/// 
		/// <param name="Sort">
		/// Specifies how the returned feedback items should be sorted.
		/// Valid values are Title, EndTime, QuestionCount, FeedbackLeft,
		/// FeedbackReceivedDescending, UserIDDescending, TitleDescending,
		/// and EndTimeDescending.
		/// </param>
		///
		/// <param name="Pagination">
		/// Specifies the number of entries per page and the page number to return
		/// in the result set.
		/// </param>
		///
		public PaginatedTransactionArrayType GetItemsAwaitingFeedback(ItemSortTypeCodeType Sort, PaginationType Pagination)
		{
			this.Sort = Sort;
			this.Pagination = Pagination;

			Execute();
			return ApiResponse.ItemsAwaitingFeedback;
		}