io.swagger.client.model.Environment Maven / Gradle / Ivy
/*
* LaunchDarkly REST API
* Build custom integrations with the LaunchDarkly REST API
*
* OpenAPI spec version: 2.0.0
* Contact: [email protected]
*
* 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 io.swagger.client.model;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.client.model.Links;
import java.io.IOException;
import java.math.BigDecimal;
/**
* Environment
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-10-02T18:49:13.486-05:00")
public class Environment {
@SerializedName("_links")
private Links links = null;
@SerializedName("_id")
private String id = null;
@SerializedName("key")
private String key = null;
@SerializedName("name")
private String name = null;
@SerializedName("apiKey")
private String apiKey = null;
@SerializedName("mobileKey")
private String mobileKey = null;
@SerializedName("color")
private String color = null;
@SerializedName("defaultTtl")
private BigDecimal defaultTtl = null;
@SerializedName("secureMode")
private Boolean secureMode = null;
public Environment links(Links links) {
this.links = links;
return this;
}
/**
* Get links
* @return links
**/
@ApiModelProperty(value = "")
public Links getLinks() {
return links;
}
public void setLinks(Links links) {
this.links = links;
}
public Environment 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 Environment key(String key) {
this.key = key;
return this;
}
/**
* Get key
* @return key
**/
@ApiModelProperty(value = "")
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Environment name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@ApiModelProperty(value = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Environment apiKey(String apiKey) {
this.apiKey = apiKey;
return this;
}
/**
* Get apiKey
* @return apiKey
**/
@ApiModelProperty(value = "")
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public Environment mobileKey(String mobileKey) {
this.mobileKey = mobileKey;
return this;
}
/**
* Get mobileKey
* @return mobileKey
**/
@ApiModelProperty(value = "")
public String getMobileKey() {
return mobileKey;
}
public void setMobileKey(String mobileKey) {
this.mobileKey = mobileKey;
}
public Environment color(String color) {
this.color = color;
return this;
}
/**
* Get color
* @return color
**/
@ApiModelProperty(value = "")
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public Environment defaultTtl(BigDecimal defaultTtl) {
this.defaultTtl = defaultTtl;
return this;
}
/**
* Get defaultTtl
* @return defaultTtl
**/
@ApiModelProperty(value = "")
public BigDecimal getDefaultTtl() {
return defaultTtl;
}
public void setDefaultTtl(BigDecimal defaultTtl) {
this.defaultTtl = defaultTtl;
}
public Environment secureMode(Boolean secureMode) {
this.secureMode = secureMode;
return this;
}
/**
* Get secureMode
* @return secureMode
**/
@ApiModelProperty(value = "")
public Boolean getSecureMode() {
return secureMode;
}
public void setSecureMode(Boolean secureMode) {
this.secureMode = secureMode;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Environment environment = (Environment) o;
return Objects.equals(this.links, environment.links) &&
Objects.equals(this.id, environment.id) &&
Objects.equals(this.key, environment.key) &&
Objects.equals(this.name, environment.name) &&
Objects.equals(this.apiKey, environment.apiKey) &&
Objects.equals(this.mobileKey, environment.mobileKey) &&
Objects.equals(this.color, environment.color) &&
Objects.equals(this.defaultTtl, environment.defaultTtl) &&
Objects.equals(this.secureMode, environment.secureMode);
}
@Override
public int hashCode() {
return Objects.hash(links, id, key, name, apiKey, mobileKey, color, defaultTtl, secureMode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Environment {\n");
sb.append(" links: ").append(toIndentedString(links)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" key: ").append(toIndentedString(key)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" apiKey: ").append(toIndentedString(apiKey)).append("\n");
sb.append(" mobileKey: ").append(toIndentedString(mobileKey)).append("\n");
sb.append(" color: ").append(toIndentedString(color)).append("\n");
sb.append(" defaultTtl: ").append(toIndentedString(defaultTtl)).append("\n");
sb.append(" secureMode: ").append(toIndentedString(secureMode)).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 ");
}
}