Beispiel #1
0
        /// <summary>
        /// Enables Selling Manager Pro subscribers to store standard feedback comments that can
        /// be left for their buyers. Selling Manager Pro subscribers can also specify what
        /// events, if any, will trigger an automated feedback response to buyers.
        /// </summary>
        ///
        /// <param name="AutomatedLeaveFeedbackEvent">
        /// Specifies the event that will trigger automated feedback to the buyer.
        /// </param>
        ///
        /// <param name="StoredCommentList">
        /// Contains a set of comments from which one can be selected to leave
        /// feedback for a buyer. If automated feedback is used, a comment is
        /// selected from the set randomly. Stored comments cannot be replaced or
        /// edited individually. Submitting a stored comments array replaces all
        /// existing stored comments.
        ///
        /// </param>
        ///
        public void SetSellingManagerFeedbackOptions(AutomatedLeaveFeedbackEventCodeType AutomatedLeaveFeedbackEvent, StringCollection StoredCommentList)
        {
            this.AutomatedLeaveFeedbackEvent = AutomatedLeaveFeedbackEvent;
            this.StoredCommentList           = StoredCommentList;

            Execute();
        }
		/// <summary>
		/// Enables Selling Manager subscribers to store standard feedback comments that can
		/// be left for their buyers. Selling Manager Pro subscribers can also specify what
		/// events, if any, will trigger an automated feedback to buyers.
		/// </summary>
		/// 
		/// <param name="AutomatedLeaveFeedbackEvent">
		/// Specifies the event that will trigger automated feedback to the buyer.
		/// Applies to Selling Manager Pro subscribers only.
		/// </param>
		///
		/// <param name="StoredCommentList">
		/// Contains a set of comments from which one can be selected to leave
		/// feedback for a buyer. If automated feedback is used, a comment is
		/// selected from the set randomly. Automated feedback applies to Selling
		/// Manager Pro subscribers only. Stored comments cannot be replaced or
		/// edited individually. Submitting a stored comments array replaces all
		/// existing stored comments.
		/// 
		/// </param>
		///
		public void SetSellingManagerFeedbackOptions(AutomatedLeaveFeedbackEventCodeType AutomatedLeaveFeedbackEvent, StringCollection StoredCommentList)
		{
			this.AutomatedLeaveFeedbackEvent = AutomatedLeaveFeedbackEvent;
			this.StoredCommentList = StoredCommentList;

			Execute();
			
		}