com.braintreegateway.PaymentMethodOptionsPayPalRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.braintreegateway;
import java.math.BigDecimal;
public class PaymentMethodOptionsPayPalRequest extends Request {
private PaymentMethodOptionsRequest parent;
private PaymentMethodOptionsPayPalShippingRequest shipping;
private String payeeEmail;
private String customField;
private String description;
private String orderId;
private BigDecimal amount;
public PaymentMethodOptionsPayPalRequest(PaymentMethodOptionsRequest parent) {
this.parent = parent;
}
public PaymentMethodOptionsRequest done() {
return parent;
}
public PaymentMethodOptionsPayPalRequest payeeEmail(String payeeEmail) {
this.payeeEmail = payeeEmail;
return this;
}
public PaymentMethodOptionsPayPalRequest description(String description) {
this.description = description;
return this;
}
public PaymentMethodOptionsPayPalRequest customField(String customField) {
this.customField = customField;
return this;
}
public PaymentMethodOptionsPayPalRequest orderId(String orderId) {
this.orderId = orderId;
return this;
}
public PaymentMethodOptionsPayPalRequest amount(BigDecimal amount) {
this.amount = amount;
return this;
}
public PaymentMethodOptionsPayPalShippingRequest shipping() {
this.shipping = new PaymentMethodOptionsPayPalShippingRequest(this);
return shipping;
}
@Override
public String toXML() {
return buildRequest("paypal").toXML();
}
@Override
public String toQueryString() {
return toQueryString("paypal");
}
@Override
public String toQueryString(String root) {
return buildRequest(root).toQueryString();
}
protected RequestBuilder buildRequest(String root) {
return new RequestBuilder(root)
.addElement("payeeEmail", payeeEmail)
.addElement("description", description)
.addElement("customField", customField)
.addElement("orderId", orderId)
.addElement("amount", amount)
.addElement("shipping", shipping);
}
}