org.finra.herd.sdk.model.GlobalAttributeDefinition Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
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 org.finra.herd.sdk.model.AttributeValueList;
import org.finra.herd.sdk.model.GlobalAttributeDefinitionKey;
/**
* GlobalAttributeDefinition
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class GlobalAttributeDefinition {
@JsonProperty("id")
private Long id = null;
@JsonProperty("globalAttributeDefinitionKey")
private GlobalAttributeDefinitionKey globalAttributeDefinitionKey = null;
@JsonProperty("attributeValueList")
private AttributeValueList attributeValueList = null;
public GlobalAttributeDefinition id(Long id) {
this.id = id;
return this;
}
/**
* The internal Id that uniquely references a Global Attribute Definition
* @return id
**/
@ApiModelProperty(value = "The internal Id that uniquely references a Global Attribute Definition")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public GlobalAttributeDefinition globalAttributeDefinitionKey(GlobalAttributeDefinitionKey globalAttributeDefinitionKey) {
this.globalAttributeDefinitionKey = globalAttributeDefinitionKey;
return this;
}
/**
* Get globalAttributeDefinitionKey
* @return globalAttributeDefinitionKey
**/
@ApiModelProperty(required = true, value = "")
public GlobalAttributeDefinitionKey getGlobalAttributeDefinitionKey() {
return globalAttributeDefinitionKey;
}
public void setGlobalAttributeDefinitionKey(GlobalAttributeDefinitionKey globalAttributeDefinitionKey) {
this.globalAttributeDefinitionKey = globalAttributeDefinitionKey;
}
public GlobalAttributeDefinition attributeValueList(AttributeValueList attributeValueList) {
this.attributeValueList = attributeValueList;
return this;
}
/**
* Get attributeValueList
* @return attributeValueList
**/
@ApiModelProperty(value = "")
public AttributeValueList getAttributeValueList() {
return attributeValueList;
}
public void setAttributeValueList(AttributeValueList attributeValueList) {
this.attributeValueList = attributeValueList;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GlobalAttributeDefinition globalAttributeDefinition = (GlobalAttributeDefinition) o;
return Objects.equals(this.id, globalAttributeDefinition.id) &&
Objects.equals(this.globalAttributeDefinitionKey, globalAttributeDefinition.globalAttributeDefinitionKey) &&
Objects.equals(this.attributeValueList, globalAttributeDefinition.attributeValueList);
}
@Override
public int hashCode() {
return Objects.hash(id, globalAttributeDefinitionKey, attributeValueList);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GlobalAttributeDefinition {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" globalAttributeDefinitionKey: ").append(toIndentedString(globalAttributeDefinitionKey)).append("\n");
sb.append(" attributeValueList: ").append(toIndentedString(attributeValueList)).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 ");
}
}