All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ebay.sdk.call.MoveSellingManagerInventoryFolderCall Maven / Gradle / Ivy

There is a newer version: 1131.1
Show newest version
/*
Copyright (c) 2013 eBay, Inc.
This program is licensed under the terms of the eBay Common Development and
Distribution License (CDDL) Version 1.0 (the "License") and any subsequent  version 
thereof released by eBay.  The then-current version of the License can be found 
at http://www.opensource.org/licenses/cddl1.php and in the eBaySDKLicense file that 
is under the eBay SDK ../docs directory.
*/

package com.ebay.sdk.call;

import java.lang.Long;

import com.ebay.sdk.*;
import com.ebay.soap.eBLBaseComponents.*;
/**
 * Wrapper class of the MoveSellingManagerInventoryFolder call of eBay SOAP API.
 * 
*

Title: SOAP API wrapper library.

*

Description: Contains wrapper classes for eBay SOAP APIs.

*

Copyright: Copyright (c) 2009

*

Company: eBay Inc.

*
Input property: FolderID - Unique ID of the Selling Manager Inventory folder that will be moved. A user can retrieve FolderID values by using GetSellingManagerInventoryFolder. *
Input property: NewParentFolderID - Unique ID of the Selling Manager Inventory folder that will be the new parent folder of the Selling Manager Inventory folder specified in the FolderID field. A user can retrieve FolderID values by using GetSellingManagerInventoryFolder. If this field is omitted, the Selling Manager Inventory folder specified in the FolderID field will be moved to the root level. * * @author Ron Murphy * @version 1.0 */ public class MoveSellingManagerInventoryFolderCall extends com.ebay.sdk.ApiCall { private Long folderID = null; private Long newParentFolderID = null; /** * Constructor. */ public MoveSellingManagerInventoryFolderCall() { } /** * Constructor. * @param apiContext The ApiContext object to be used to make the call. */ public MoveSellingManagerInventoryFolderCall(ApiContext apiContext) { super(apiContext); } /** * Moves a Selling Manager inventory folder. *

* This call is subject to change without notice; the deprecation process is * inapplicable to this call. This call is only applicable and accessible by eBay sellers with a Selling Manager Pro subscription. * *
* @throws ApiException * @throws SdkException * @throws Exception * @return The void object. */ public void moveSellingManagerInventoryFolder() throws com.ebay.sdk.ApiException, com.ebay.sdk.SdkException, java.lang.Exception { MoveSellingManagerInventoryFolderRequestType req; req = new MoveSellingManagerInventoryFolderRequestType(); if (this.folderID != null) req.setFolderID(this.folderID); if (this.newParentFolderID != null) req.setNewParentFolderID(this.newParentFolderID); MoveSellingManagerInventoryFolderResponseType resp = (MoveSellingManagerInventoryFolderResponseType) execute(req); } /** * Gets the MoveSellingManagerInventoryFolderRequestType.folderID. * @return Long */ public Long getFolderID() { return this.folderID; } /** * Sets the MoveSellingManagerInventoryFolderRequestType.folderID. * @param folderID Long */ public void setFolderID(Long folderID) { this.folderID = folderID; } /** * Gets the MoveSellingManagerInventoryFolderRequestType.newParentFolderID. * @return Long */ public Long getNewParentFolderID() { return this.newParentFolderID; } /** * Sets the MoveSellingManagerInventoryFolderRequestType.newParentFolderID. * @param newParentFolderID Long */ public void setNewParentFolderID(Long newParentFolderID) { this.newParentFolderID = newParentFolderID; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy