com.braintreegateway.UsBankAccountVerificationSearchRequest 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 UsBankAccountVerificationSearchRequest extends SearchRequest {
public TextNode id() {
return new TextNode("id", this);
}
public TextNode accountHolderName() {
return new TextNode("account_holder_name", this);
}
public TextNode customerEmail() {
return new TextNode("customer_email", this);
}
public TextNode customerId() {
return new TextNode("customer_id", this);
}
public TextNode paymentMethodToken() {
return new TextNode("payment_method_token", this);
}
public TextNode routingNumber() {
return new TextNode("routing_number", this);
}
public MultipleValueNode ids() {
return new MultipleValueNode("ids", this);
}
public MultipleValueNode status() {
return new MultipleValueNode("status", this);
}
public MultipleValueNode verificationMethod() {
return new MultipleValueNode("verification_method", this);
}
public DateRangeNode createdAt() {
return new DateRangeNode("created_at", this);
}
public EqualityNode accountType() {
return new EqualityNode("account_type", this);
}
public EndsWithNode accountNumber() {
return new EndsWithNode("account_number", this);
}
}