com.braintreegateway.CreditCardVerificationSearchRequest 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 CreditCardVerificationSearchRequest extends SearchRequest {
public TextNode id() {
return new TextNode("id", this);
}
public TextNode creditCardCardholderName() {
return new TextNode("credit_card_cardholder_name", this);
}
public EqualityNode creditCardExpirationDate() {
return new EqualityNode("credit_card_expiration_date", this);
}
public PartialMatchNode creditCardNumber() {
return new PartialMatchNode("credit_card_number", this);
}
public MultipleValueNode ids() {
return new MultipleValueNode("ids", this);
}
public MultipleValueNode creditCardCardType() {
return new MultipleValueNode("credit_card_card_type", this);
}
public DateRangeNode createdAt() {
return new DateRangeNode("created_at", this);
}
public MultipleValueNode status() {
return new MultipleValueNode("status", this);
}
public TextNode billingPostalCode() {
return new TextNode("billing_address_details_postal_code", 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);
}
}