com.huaweicloud.sdk.cse.v1.model.DownloadKieReqBody Maven / Gradle / Ivy
The newest version!
package com.huaweicloud.sdk.cse.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* DownloadKieReqBody
*/
public class DownloadKieReqBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "ids")
private List ids = null;
public DownloadKieReqBody withIds(List ids) {
this.ids = ids;
return this;
}
public DownloadKieReqBody addIdsItem(String idsItem) {
if (this.ids == null) {
this.ids = new ArrayList<>();
}
this.ids.add(idsItem);
return this;
}
public DownloadKieReqBody withIds(Consumer> idsSetter) {
if (this.ids == null) {
this.ids = new ArrayList<>();
}
idsSetter.accept(this.ids);
return this;
}
/**
* 配置ID的集合
* @return ids
*/
public List getIds() {
return ids;
}
public void setIds(List ids) {
this.ids = ids;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
DownloadKieReqBody that = (DownloadKieReqBody) obj;
return Objects.equals(this.ids, that.ids);
}
@Override
public int hashCode() {
return Objects.hash(ids);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DownloadKieReqBody {\n");
sb.append(" ids: ").append(toIndentedString(ids)).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 ");
}
}