com.yahoo.athenz.zms.TemplateParam Maven / Gradle / Ivy
The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//
package com.yahoo.athenz.zms;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.yahoo.rdl.*;
//
// TemplateParam -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class TemplateParam {
public String name;
public String value;
public TemplateParam setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
public TemplateParam setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return value;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != TemplateParam.class) {
return false;
}
TemplateParam a = (TemplateParam) another;
if (name == null ? a.name != null : !name.equals(a.name)) {
return false;
}
if (value == null ? a.value != null : !value.equals(a.value)) {
return false;
}
}
return true;
}
}