com.tinypass.client.publisher.model.PeriodLink 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 PeriodLink {
/* 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;
/* 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 Boolean getRemoved() {
return removed;
}
public void setRemoved(Boolean removed) {
this.removed = removed;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PeriodLink {\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(" removed: ").append(removed).append("\n");
sb.append("}\n");
return sb.toString();
}
}