com.braintreegateway.DisputeEvidence 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 final class DisputeEvidence {
private final Calendar createdAt;
private final Calendar sentToProcessorAt;
private final String comment;
private final String id;
private final String url;
private final String category;
private final String sequenceNumber;
public DisputeEvidence(NodeWrapper node) {
createdAt = node.findDateTime("created-at");
sentToProcessorAt = node.findDate("sent-to-processor-at");
comment = node.findString("comment");
id = node.findString("id");
url = node.findString("url");
category = node.findString("category");
sequenceNumber = node.findString("sequence-number");
}
public Calendar getCreatedAt() {
return createdAt;
}
public Calendar getSentToProcessorAt() {
return sentToProcessorAt;
}
public String getComment() {
return comment;
}
public String getId() {
return id;
}
public String getUrl() {
return url;
}
public String getCategory() {
return category;
}
public String getSequenceNumber() {
return sequenceNumber;
}
}