com.braintreegateway.AchMandate 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;
import com.braintreegateway.util.NodeWrapper;
import java.util.Calendar;
public class AchMandate {
private String text;
private Calendar acceptedAt;
public AchMandate(NodeWrapper node) {
text = node.findString("text");
acceptedAt = node.findDate("accepted-at");
}
public String getText() {
return text;
}
public Calendar getAcceptedAt() {
return acceptedAt;
}
}