com.amazonservices.mws.subscriptions.model.CreateSubscriptionInput Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright 2009-2014 Amazon Services. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
*
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at: http://aws.amazon.com/apache2.0
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*******************************************************************************
* Create Subscription Input
* API Version: 2013-07-01
* Library Version: 2014-09-30
* Generated: Tue Sep 16 08:58:06 PDT 2014
*/
package com.amazonservices.mws.subscriptions.model;
import com.amazonservices.mws.client.AbstractMwsObject;
import com.amazonservices.mws.client.MwsReader;
import com.amazonservices.mws.client.MwsWriter;
/**
* CreateSubscriptionInput complex type.
*
* XML schema:
*
*
* <complexType name="CreateSubscriptionInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SellerId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="MWSAuthToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MarketplaceId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Subscription" type="{http://mws.amazonservices.com/schema/Subscriptions/2013-07-01}Subscription"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
public class CreateSubscriptionInput extends AbstractMwsObject {
private String sellerId;
private String mwsAuthToken;
private String marketplaceId;
private Subscription subscription;
/**
* Get the value of SellerId.
*
* @return The value of SellerId.
*/
public String getSellerId() {
return sellerId;
}
/**
* Set the value of SellerId.
*
* @param sellerId
* The new value to set.
*/
public void setSellerId(String sellerId) {
this.sellerId = sellerId;
}
/**
* Check to see if SellerId is set.
*
* @return true if SellerId is set.
*/
public boolean isSetSellerId() {
return sellerId != null;
}
/**
* Set the value of SellerId, return this.
*
* @param sellerId
* The new value to set.
*
* @return This instance.
*/
public CreateSubscriptionInput withSellerId(String sellerId) {
this.sellerId = sellerId;
return this;
}
/**
* Get the value of MWSAuthToken.
*
* @return The value of MWSAuthToken.
*/
public String getMWSAuthToken() {
return mwsAuthToken;
}
/**
* Set the value of MWSAuthToken.
*
* @param mwsAuthToken
* The new value to set.
*/
public void setMWSAuthToken(String mwsAuthToken) {
this.mwsAuthToken = mwsAuthToken;
}
/**
* Check to see if MWSAuthToken is set.
*
* @return true if MWSAuthToken is set.
*/
public boolean isSetMWSAuthToken() {
return mwsAuthToken != null;
}
/**
* Set the value of MWSAuthToken, return this.
*
* @param mwsAuthToken
* The new value to set.
*
* @return This instance.
*/
public CreateSubscriptionInput withMWSAuthToken(String mwsAuthToken) {
this.mwsAuthToken = mwsAuthToken;
return this;
}
/**
* Get the value of MarketplaceId.
*
* @return The value of MarketplaceId.
*/
public String getMarketplaceId() {
return marketplaceId;
}
/**
* Set the value of MarketplaceId.
*
* @param marketplaceId
* The new value to set.
*/
public void setMarketplaceId(String marketplaceId) {
this.marketplaceId = marketplaceId;
}
/**
* Check to see if MarketplaceId is set.
*
* @return true if MarketplaceId is set.
*/
public boolean isSetMarketplaceId() {
return marketplaceId != null;
}
/**
* Set the value of MarketplaceId, return this.
*
* @param marketplaceId
* The new value to set.
*
* @return This instance.
*/
public CreateSubscriptionInput withMarketplaceId(String marketplaceId) {
this.marketplaceId = marketplaceId;
return this;
}
/**
* Get the value of Subscription.
*
* @return The value of Subscription.
*/
public Subscription getSubscription() {
return subscription;
}
/**
* Set the value of Subscription.
*
* @param subscription
* The new value to set.
*/
public void setSubscription(Subscription subscription) {
this.subscription = subscription;
}
/**
* Check to see if Subscription is set.
*
* @return true if Subscription is set.
*/
public boolean isSetSubscription() {
return subscription != null;
}
/**
* Set the value of Subscription, return this.
*
* @param subscription
* The new value to set.
*
* @return This instance.
*/
public CreateSubscriptionInput withSubscription(Subscription subscription) {
this.subscription = subscription;
return this;
}
/**
* Read members from a MwsReader.
*
* @param r
* The reader to read from.
*/
@Override
public void readFragmentFrom(MwsReader r) {
sellerId = r.read("SellerId", String.class);
mwsAuthToken = r.read("MWSAuthToken", String.class);
marketplaceId = r.read("MarketplaceId", String.class);
subscription = r.read("Subscription", Subscription.class);
}
/**
* Write members to a MwsWriter.
*
* @param w
* The writer to write to.
*/
@Override
public void writeFragmentTo(MwsWriter w) {
w.write("SellerId", sellerId);
w.write("MWSAuthToken", mwsAuthToken);
w.write("MarketplaceId", marketplaceId);
w.write("Subscription", subscription);
}
/**
* Write tag, xmlns and members to a MwsWriter.
*
* @param w
* The Writer to write to.
*/
@Override
public void writeTo(MwsWriter w) {
w.write("http://mws.amazonservices.com/schema/Subscriptions/2013-07-01", "CreateSubscriptionInput",this);
}
/** Value constructor. */
public CreateSubscriptionInput(String sellerId,String mwsAuthToken,String marketplaceId,Subscription subscription) {
this.sellerId = sellerId;
this.mwsAuthToken = mwsAuthToken;
this.marketplaceId = marketplaceId;
this.subscription = subscription;
}
/** Legacy value constructor. */
public CreateSubscriptionInput(String sellerId,String marketplaceId,Subscription subscription) {
this.sellerId = sellerId;
this.marketplaceId = marketplaceId;
this.subscription = subscription;
}
/** Default constructor. */
public CreateSubscriptionInput() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy