/// <summary>
		/// Sets the preferences for a user's eBay Store.
		/// </summary>
		/// 
		/// <param name="StorePreferences">
		/// Specifies the store preferences.
		/// </param>
		///
		public void SetStorePreferences(StorePreferencesType StorePreferences)
		{
			this.StorePreferences = StorePreferences;

			Execute();
			
		}
Exemplo n.º 2
0
        /// <summary>
        /// Sets the preferences for a user's eBay Store. Sellers must have an eBay Store subscription in order to use this call.
        /// </summary>
        ///
        /// <param name="StorePreferences">
        /// This container is used to set the eBay Store's preferences. Currently, the only applicable eBay Store preferences are Store vacation preferences.
        /// </param>
        ///
        public void SetStorePreferences(StorePreferencesType StorePreferences)
        {
            this.StorePreferences = StorePreferences;

            Execute();
        }