com.braintreegateway.SepaDirectDebitAccountRequest 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;
public class SepaDirectDebitAccountRequest extends Request {
private String token;
private SepaDirectDebitAccountOptionsRequest optionsRequest;
public SepaDirectDebitAccountRequest token(String token) {
this.token = token;
return this;
}
public SepaDirectDebitAccountOptionsRequest options() {
this.optionsRequest = new SepaDirectDebitAccountOptionsRequest(this);
return optionsRequest;
}
@Override
public String toXML() {
return buildRequest("sepaDebitAccount").toXML();
}
protected RequestBuilder buildRequest(String root) {
return new RequestBuilder(root)
.addElement("options", optionsRequest)
.addElement("token", token);
}
}