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

urn.ebay.api.PayPalAPI.SetCustomerBillingAgreementReq Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.15.122
Show newest version
package urn.ebay.api.PayPalAPI;
import urn.ebay.api.PayPalAPI.SetCustomerBillingAgreementRequestType;
import com.paypal.core.SDKUtil;

/**
 * 
 */
public class SetCustomerBillingAgreementReq{

	private static final String nameSpace="urn:ebay:api:PayPalAPI";
	private static final String preferredPrefix="ns";

	/**
	 * 	 
	 */ 
	private SetCustomerBillingAgreementRequestType setCustomerBillingAgreementRequest;

	

	/**
	 * Default Constructor
	 */
	public SetCustomerBillingAgreementReq (){
	}	

	/**
	 * Getter for setCustomerBillingAgreementRequest
	 */
	 public SetCustomerBillingAgreementRequestType getSetCustomerBillingAgreementRequest() {
	 	return setCustomerBillingAgreementRequest;
	 }
	 
	/**
	 * Setter for setCustomerBillingAgreementRequest
	 */
	 public void setSetCustomerBillingAgreementRequest(SetCustomerBillingAgreementRequestType setCustomerBillingAgreementRequest) {
	 	this.setCustomerBillingAgreementRequest = setCustomerBillingAgreementRequest;
	 }
	 


	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(setCustomerBillingAgreementRequest != null) {
			sb.append(setCustomerBillingAgreementRequest.toXMLString(null,"SetCustomerBillingAgreementRequest"));
		}
		if(name!=null){
			if(prefix!=null){
				sb.append("");
			}
			else{
				sb.append("");
			}
		}
		return sb.toString();
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy