com.yahoo.athenz.zms.ReviewObjects 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 java.util.List;
import com.yahoo.rdl.*;
//
// ReviewObjects - The representation for a list of objects with full details
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class ReviewObjects {
public List list;
public ReviewObjects setList(List list) {
this.list = list;
return this;
}
public List getList() {
return list;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != ReviewObjects.class) {
return false;
}
ReviewObjects a = (ReviewObjects) another;
if (list == null ? a.list != null : !list.equals(a.list)) {
return false;
}
}
return true;
}
}