![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.AccessPeriod 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 AccessPeriod {
/* The period ID */
private String periodId = null;
/* The period name */
private String name = null;
/* Billing description */
private String billingDescription = null;
/* Access period type */
private String type = null;
/* Whether the property is enabled */
private Boolean enabled = null;
/* Whether the access period is removed */
private Boolean removed = null;
/* Tooltip */
private String tooltip = null;
public String getPeriodId() {
return periodId;
}
public void setPeriodId(String periodId) {
this.periodId = periodId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getBillingDescription() {
return billingDescription;
}
public void setBillingDescription(String billingDescription) {
this.billingDescription = billingDescription;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public Boolean getRemoved() {
return removed;
}
public void setRemoved(Boolean removed) {
this.removed = removed;
}
public String getTooltip() {
return tooltip;
}
public void setTooltip(String tooltip) {
this.tooltip = tooltip;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccessPeriod {\n");
sb.append(" periodId: ").append(periodId).append("\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" billingDescription: ").append(billingDescription).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" enabled: ").append(enabled).append("\n");
sb.append(" removed: ").append(removed).append("\n");
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy