urn.ebay.api.PayPalAPI.DoMobileCheckoutPaymentReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of merchantsdk Show documentation
Show all versions of merchantsdk Show documentation
The PayPal Merchant SDK provides Java APIs for processing payments, recurring payments, subscriptions and transactions using PayPal's Merchant APIs, which include Express Checkout, Recurring Payments, Direct Payment and Transactional APIs.
package urn.ebay.api.PayPalAPI;
import urn.ebay.api.PayPalAPI.DoMobileCheckoutPaymentRequestType;
import com.paypal.core.SDKUtil;
/**
*
*/
public class DoMobileCheckoutPaymentReq{
private static final String nameSpace="urn:ebay:api:PayPalAPI";
private static final String preferredPrefix="ns";
/**
*
*/
private DoMobileCheckoutPaymentRequestType doMobileCheckoutPaymentRequest;
/**
* Default Constructor
*/
public DoMobileCheckoutPaymentReq (){
}
/**
* Getter for doMobileCheckoutPaymentRequest
*/
public DoMobileCheckoutPaymentRequestType getDoMobileCheckoutPaymentRequest() {
return doMobileCheckoutPaymentRequest;
}
/**
* Setter for doMobileCheckoutPaymentRequest
*/
public void setDoMobileCheckoutPaymentRequest(DoMobileCheckoutPaymentRequestType doMobileCheckoutPaymentRequest) {
this.doMobileCheckoutPaymentRequest = doMobileCheckoutPaymentRequest;
}
public String toXMLString(String prefix, String name) {
StringBuilder sb = new StringBuilder();
if(name!=null){
if(prefix!=null){
sb.append("<").append(prefix).append(":").append(name).append(">");
}
else{
sb.append("<").append(preferredPrefix).append(":").append(name).append(">");
}
}
if(doMobileCheckoutPaymentRequest != null) {
sb.append(doMobileCheckoutPaymentRequest.toXMLString(null,"DoMobileCheckoutPaymentRequest"));
}
if(name!=null){
if(prefix!=null){
sb.append("").append(prefix).append(":").append(name).append(">");
}
else{
sb.append("").append(preferredPrefix).append(":").append(name).append(">");
}
}
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy