org.aoju.bus.gitlab.models.License Maven / Gradle / Ivy
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
* *
********************************************************************************/
package org.aoju.bus.gitlab.models;
import org.aoju.bus.gitlab.support.JacksonJson;
import java.util.Date;
import java.util.Map;
public class License {
private Long id;
private String plan;
private Date createdAt;
private Date startsAt;
private Date expiresAt;
private Integer historicalMax;
private Boolean expired;
private Integer overage;
private Integer userLimit;
private Integer activeUsers;
private Map licensee;
private Map addOns;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getStartsAt() {
return startsAt;
}
public void setStartsAt(Date startsAt) {
this.startsAt = startsAt;
}
public Date getExpiresAt() {
return expiresAt;
}
public void setExpiresAt(Date expiresAt) {
this.expiresAt = expiresAt;
}
public Integer getHistoricalMax() {
return historicalMax;
}
public void setHistoricalMax(Integer historicalMax) {
this.historicalMax = historicalMax;
}
public Boolean getExpired() {
return expired;
}
public void setExpired(Boolean expired) {
this.expired = expired;
}
public Integer getOverage() {
return overage;
}
public void setOverage(Integer overage) {
this.overage = overage;
}
public Integer getUserLimit() {
return userLimit;
}
public void setUserLimit(Integer userLimit) {
this.userLimit = userLimit;
}
public Integer getActiveUsers() {
return activeUsers;
}
public void setActiveUsers(Integer activeUsers) {
this.activeUsers = activeUsers;
}
public Map getLicensee() {
return licensee;
}
public void setLicensee(Map licensee) {
this.licensee = licensee;
}
public Map getAddOns() {
return addOns;
}
public void setAddOns(Map addOns) {
this.addOns = addOns;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}