com.braintreegateway.TransactionDescriptorRequest 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.
The newest version!
package com.braintreegateway;
public class TransactionDescriptorRequest extends DescriptorRequest {
private TransactionRequest parent;
public TransactionDescriptorRequest(TransactionRequest parent) {
this.parent = parent;
}
public TransactionDescriptorRequest name(String name) {
super.name(name);
return this;
}
public TransactionDescriptorRequest phone(String phone) {
super.phone(phone);
return this;
}
public TransactionDescriptorRequest url(String url) {
super.url(url);
return this;
}
public TransactionRequest done() {
return parent;
}
}