com.tinypass.client.publisher.model.PeriodLinkCandidate 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 PeriodLinkCandidate {
/* The ID of the access period in dynamic term billing configuration */
private String accessPeriodId = null;
/* Access period name */
private String name = null;
/* Access period type */
private String type = null;
/* The description of the term billing plan */
private String paymentBillingPlanDescription = null;
/* The current logic id */
private String currentLogicId = null;
/* The current logic name */
private String currentLogicName = null;
/* Whether the access period is removed */
private Boolean removed = null;
public String getAccessPeriodId() {
return accessPeriodId;
}
public void setAccessPeriodId(String accessPeriodId) {
this.accessPeriodId = accessPeriodId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getPaymentBillingPlanDescription() {
return paymentBillingPlanDescription;
}
public void setPaymentBillingPlanDescription(String paymentBillingPlanDescription) {
this.paymentBillingPlanDescription = paymentBillingPlanDescription;
}
public String getCurrentLogicId() {
return currentLogicId;
}
public void setCurrentLogicId(String currentLogicId) {
this.currentLogicId = currentLogicId;
}
public String getCurrentLogicName() {
return currentLogicName;
}
public void setCurrentLogicName(String currentLogicName) {
this.currentLogicName = currentLogicName;
}
public Boolean getRemoved() {
return removed;
}
public void setRemoved(Boolean removed) {
this.removed = removed;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PeriodLinkCandidate {\n");
sb.append(" accessPeriodId: ").append(accessPeriodId).append("\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" paymentBillingPlanDescription: ").append(paymentBillingPlanDescription).append("\n");
sb.append(" currentLogicId: ").append(currentLogicId).append("\n");
sb.append(" currentLogicName: ").append(currentLogicName).append("\n");
sb.append(" removed: ").append(removed).append("\n");
sb.append("}\n");
return sb.toString();
}
}