net.leanix.mtm.api.models.CustomFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leanix-mtm-sdk-java Show documentation
Show all versions of leanix-mtm-sdk-java Show documentation
SDK for Java to access leanIX MTM REST API
/*
* MTM
* Multi-tenancy-manager for LeanIX. Manages accounts, contracts, users, workspaces, permissions, and more.
*
* OpenAPI spec version: 1.6.348
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package net.leanix.mtm.api.models;
import java.util.Objects;
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;
import java.util.ArrayList;
import java.util.List;
import net.leanix.mtm.api.models.Contract;
import net.leanix.mtm.api.models.Feature;
import net.leanix.mtm.api.models.Link;
import net.leanix.mtm.api.models.Workspace;
/**
* CustomFeature
*/
public class CustomFeature {
@JsonProperty("id")
private String id = null;
@JsonProperty("workspace")
private Workspace workspace = null;
@JsonProperty("contract")
private Contract contract = null;
@JsonProperty("featureId")
private String featureId = null;
/**
* Gets or Sets status
*/
public enum StatusEnum {
DISABLED("DISABLED"),
ENABLED("ENABLED");
private String value;
StatusEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static StatusEnum fromValue(String text) {
for (StatusEnum b : StatusEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
}
@JsonProperty("status")
private StatusEnum status = null;
@JsonProperty("quota")
private Integer quota = null;
@JsonProperty("feature")
private Feature feature = null;
@JsonProperty("scope")
private String scope = null;
@JsonProperty("links")
private List links = null;
public CustomFeature id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@ApiModelProperty(value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public CustomFeature workspace(Workspace workspace) {
this.workspace = workspace;
return this;
}
/**
* Get workspace
* @return workspace
**/
@ApiModelProperty(value = "")
public Workspace getWorkspace() {
return workspace;
}
public void setWorkspace(Workspace workspace) {
this.workspace = workspace;
}
public CustomFeature contract(Contract contract) {
this.contract = contract;
return this;
}
/**
* Get contract
* @return contract
**/
@ApiModelProperty(value = "")
public Contract getContract() {
return contract;
}
public void setContract(Contract contract) {
this.contract = contract;
}
public CustomFeature featureId(String featureId) {
this.featureId = featureId;
return this;
}
/**
* Get featureId
* @return featureId
**/
@ApiModelProperty(value = "")
public String getFeatureId() {
return featureId;
}
public void setFeatureId(String featureId) {
this.featureId = featureId;
}
public CustomFeature status(StatusEnum status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public StatusEnum getStatus() {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public CustomFeature quota(Integer quota) {
this.quota = quota;
return this;
}
/**
* Get quota
* @return quota
**/
@ApiModelProperty(value = "")
public Integer getQuota() {
return quota;
}
public void setQuota(Integer quota) {
this.quota = quota;
}
public CustomFeature feature(Feature feature) {
this.feature = feature;
return this;
}
/**
* Get feature
* @return feature
**/
@ApiModelProperty(value = "")
public Feature getFeature() {
return feature;
}
public void setFeature(Feature feature) {
this.feature = feature;
}
/**
* Get scope
* @return scope
**/
@ApiModelProperty(value = "")
public String getScope() {
return scope;
}
public CustomFeature links(List links) {
this.links = links;
return this;
}
public CustomFeature addLinksItem(Link linksItem) {
if (this.links == null) {
this.links = new ArrayList();
}
this.links.add(linksItem);
return this;
}
/**
* Get links
* @return links
**/
@ApiModelProperty(value = "")
public List getLinks() {
return links;
}
public void setLinks(List links) {
this.links = links;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CustomFeature customFeature = (CustomFeature) o;
return Objects.equals(this.id, customFeature.id) &&
Objects.equals(this.workspace, customFeature.workspace) &&
Objects.equals(this.contract, customFeature.contract) &&
Objects.equals(this.featureId, customFeature.featureId) &&
Objects.equals(this.status, customFeature.status) &&
Objects.equals(this.quota, customFeature.quota) &&
Objects.equals(this.feature, customFeature.feature) &&
Objects.equals(this.scope, customFeature.scope) &&
Objects.equals(this.links, customFeature.links);
}
@Override
public int hashCode() {
return Objects.hash(id, workspace, contract, featureId, status, quota, feature, scope, links);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CustomFeature {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" workspace: ").append(toIndentedString(workspace)).append("\n");
sb.append(" contract: ").append(toIndentedString(contract)).append("\n");
sb.append(" featureId: ").append(toIndentedString(featureId)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" quota: ").append(toIndentedString(quota)).append("\n");
sb.append(" feature: ").append(toIndentedString(feature)).append("\n");
sb.append(" scope: ").append(toIndentedString(scope)).append("\n");
sb.append(" links: ").append(toIndentedString(links)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy