package es.tid.topologyModuleBase.UnifyTopoModel.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaJerseyServerCodegen", date = "2016-07-26T10:14:24.517Z") public class MetadataSchema { private String key = null; private String value = null; /** **/ public MetadataSchema key(String key) { this.key = key; return this; } @ApiModelProperty(value = "") @JsonProperty("key") public String getKey() { return key; } public void setKey(String key) { this.key = key; } /** **/ public MetadataSchema value(String value) { this.value = value; return this; } @ApiModelProperty(value = "") @JsonProperty("value") public String getValue() { return value; } public void setValue(String value) { this.value = value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MetadataSchema metadataSchema = (MetadataSchema) o; return Objects.equals(key, metadataSchema.key) && Objects.equals(value, metadataSchema.value); } @Override public int hashCode() { return Objects.hash(key, value); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class MetadataSchema {\n"); sb.append(" key: ").append(toIndentedString(key)).append("\n"); sb.append(" value: ").append(toIndentedString(value)).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(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }