/// <summary>
        ///
        /// </summary>
        /// <param name="Action"></param>
        /// <param name="StoreCategoryList"></param>
        /// <returns></returns>
        public long SetStoreCategories(StoreCategoryUpdateActionCodeType Action, StoreCustomCategoryTypeCollection StoreCategoryList)
        {
            this.Action            = Action;
            this.StoreCategoryList = StoreCategoryList;

            Execute();
            return(ApiResponse.TaskID);
        }
        /// <summary>
        /// Changes the category structure of an eBay store.
        /// </summary>
        ///
        /// <param name="Action">
        /// Specifies the type of action (Add, Move, Delete, or Rename) to carry out
        /// for the specified categories.
        /// </param>
        ///
        /// <param name="ItemDestinationCategoryID">
        /// Items can only be contained within child categories. A parent category
        /// cannot contain items. If adding, moving, or deleting categories displaces
        /// items, you must specify a destination child category under which the
        /// displaced items will be moved. The destination category must have no
        /// child categories.
        /// </param>
        ///
        /// <param name="DestinationParentCategoryID">
        /// When adding or moving store categories, specifies the category under
        /// which the listed categories will be located. To add or move categories to
        /// the top level, set the value to -999.
        /// </param>
        ///
        /// <param name="StoreCategoryList">
        /// Specifies the store categories on which to act.
        /// </param>
        ///
        public long SetStoreCategories(StoreCategoryUpdateActionCodeType Action, long ItemDestinationCategoryID, long DestinationParentCategoryID, StoreCustomCategoryTypeCollection StoreCategoryList)
        {
            this.Action = Action;
            this.ItemDestinationCategoryID   = ItemDestinationCategoryID;
            this.DestinationParentCategoryID = DestinationParentCategoryID;
            this.StoreCategoryList           = StoreCategoryList;

            Execute();
            return(ApiResponse.TaskID);
        }
		/// <summary>
		/// Changes the category structure of an eBay store.
		/// </summary>
		/// 
		/// <param name="Action">
		/// Specifies the type of action (Add, Move, Delete, or Rename) to carry out
		/// for the specified categories.
		/// </param>
		///
		/// <param name="ItemDestinationCategoryID">
		/// Items can only be contained within child categories. A parent category
		/// cannot contain items. If adding, moving, or deleting categories displaces
		/// items, you must specify a destination child category under which the
		/// displaced items will be moved. The destination category must have no
		/// child categories.
		/// </param>
		///
		/// <param name="DestinationParentCategoryID">
		/// When adding or moving store categories, specifies the category under
		/// which the listed categories will be located. To add or move categories to
		/// the top level, set the value to -999.
		/// </param>
		///
		/// <param name="StoreCategoryList">
		/// Specifies the store categories on which to act.
		/// </param>
		///
		public long SetStoreCategories(StoreCategoryUpdateActionCodeType Action, long ItemDestinationCategoryID, long DestinationParentCategoryID, StoreCustomCategoryTypeCollection StoreCategoryList)
		{
			this.Action = Action;
			this.ItemDestinationCategoryID = ItemDestinationCategoryID;
			this.DestinationParentCategoryID = DestinationParentCategoryID;
			this.StoreCategoryList = StoreCategoryList;

			Execute();
			return ApiResponse.TaskID;
		}
		public long SetStoreCategories(StoreCategoryUpdateActionCodeType Action, StoreCustomCategoryTypeCollection StoreCategoryList)
		{
			this.Action = Action;
			this.StoreCategoryList = StoreCategoryList;

			Execute();
			return ApiResponse.TaskID;
		}