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

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

The 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 java.lang.String;

import com.ebay.sdk.*;
import com.ebay.soap.eBLBaseComponents.*;
/**
 * Wrapper class of the SaveItemToSellingManagerTemplate 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: ItemID - ItemID which should be created as a template and saved to inventory. *
Input property: ProductID - Associates the new template with a product. *
Input property: TemplateName - Name associated with the template. If no name is submitted, the template will be named automatically. *
Output property: ReturnedTemplateID - Template ID that is newly created. * * @author Ron Murphy * @version 1.0 */ public class SaveItemToSellingManagerTemplateCall extends com.ebay.sdk.ApiCall { private String itemID = null; private Long productID = null; private String templateName = null; private Long returnedTemplateID=null; /** * Constructor. */ public SaveItemToSellingManagerTemplateCall() { } /** * Constructor. * @param apiContext The ApiContext object to be used to make the call. */ public SaveItemToSellingManagerTemplateCall(ApiContext apiContext) { super(apiContext); } /** * Creates a Selling Manager listing template that is similar to an item. * This call is subject to change without notice; the * deprecation process is inapplicable to this call. * *
* @throws ApiException one or more errors reported by an API call. * @throws SdkException The super class of all SDK exception types. * @throws Exception * @return The Long object. */ public Long saveItemToSellingManagerTemplate() throws com.ebay.sdk.ApiException, com.ebay.sdk.SdkException, java.lang.Exception { SaveItemToSellingManagerTemplateRequestType req; req = new SaveItemToSellingManagerTemplateRequestType(); if (this.itemID != null) req.setItemID(this.itemID); if (this.productID != null) req.setProductID(this.productID); if (this.templateName != null) req.setTemplateName(this.templateName); SaveItemToSellingManagerTemplateResponseType resp = (SaveItemToSellingManagerTemplateResponseType) execute(req); this.returnedTemplateID = resp.getTemplateID(); return this.getReturnedTemplateID(); } /** * Gets the SaveItemToSellingManagerTemplateRequestType.itemID. * @return String */ public String getItemID() { return this.itemID; } /** * Sets the SaveItemToSellingManagerTemplateRequestType.itemID. * @param itemID String */ public void setItemID(String itemID) { this.itemID = itemID; } /** * Gets the SaveItemToSellingManagerTemplateRequestType.productID. * @return Long */ public Long getProductID() { return this.productID; } /** * Sets the SaveItemToSellingManagerTemplateRequestType.productID. * @param productID Long */ public void setProductID(Long productID) { this.productID = productID; } /** * Gets the SaveItemToSellingManagerTemplateRequestType.templateName. * @return String */ public String getTemplateName() { return this.templateName; } /** * Sets the SaveItemToSellingManagerTemplateRequestType.templateName. * @param templateName String */ public void setTemplateName(String templateName) { this.templateName = templateName; } /** * Valid after executing the API. * Gets the returned SaveItemToSellingManagerTemplateResponseType.returnedTemplateID. * * @return Long */ public Long getReturnedTemplateID() { return this.returnedTemplateID; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy