com.tinypass.client.publisher.model.AccessPeriodStats Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class AccessPeriodStats {
/* The ID of the access period in dynamic term billing configuration */
private String accessPeriodId = null;
/* Count of active user subscriptions */
private Integer activeSubscriptionCount = null;
/* Count of scheduled user subscriptions to specific period */
private Integer scheduledSubscriptionCount = null;
public String getAccessPeriodId() {
return accessPeriodId;
}
public void setAccessPeriodId(String accessPeriodId) {
this.accessPeriodId = accessPeriodId;
}
public Integer getActiveSubscriptionCount() {
return activeSubscriptionCount;
}
public void setActiveSubscriptionCount(Integer activeSubscriptionCount) {
this.activeSubscriptionCount = activeSubscriptionCount;
}
public Integer getScheduledSubscriptionCount() {
return scheduledSubscriptionCount;
}
public void setScheduledSubscriptionCount(Integer scheduledSubscriptionCount) {
this.scheduledSubscriptionCount = scheduledSubscriptionCount;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccessPeriodStats {\n");
sb.append(" accessPeriodId: ").append(accessPeriodId).append("\n");
sb.append(" activeSubscriptionCount: ").append(activeSubscriptionCount).append("\n");
sb.append(" scheduledSubscriptionCount: ").append(scheduledSubscriptionCount).append("\n");
sb.append("}\n");
return sb.toString();
}
}