com.braintreegateway.SubscriptionDetails 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 SubscriptionDetails {
private Calendar billingPeriodEndDate;
private Calendar billingPeriodStartDate;
public SubscriptionDetails(NodeWrapper node) {
billingPeriodEndDate = node.findDate("billing-period-end-date");
billingPeriodStartDate = node.findDate("billing-period-start-date");
}
public Calendar getBillingPeriodEndDate() {
return billingPeriodEndDate;
}
public Calendar getBillingPeriodStartDate() {
return billingPeriodStartDate;
}
}