com.huaweicloud.sdk.imagesearch.v2.model.SearchRestInfo Maven / Gradle / Ivy
package com.huaweicloud.sdk.imagesearch.v2.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;
/**
* 搜索的相关信息。
*/
public class SearchRestInfo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "items")
private List items = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "search_info")
private SearchInfo searchInfo;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "image_info")
private SearchRestInfoImageInfo imageInfo;
public SearchRestInfo withItems(List items) {
this.items = items;
return this;
}
public SearchRestInfo addItemsItem(SearchItem itemsItem) {
if (this.items == null) {
this.items = new ArrayList<>();
}
this.items.add(itemsItem);
return this;
}
public SearchRestInfo withItems(Consumer> itemsSetter) {
if (this.items == null) {
this.items = new ArrayList<>();
}
itemsSetter.accept(this.items);
return this;
}
/**
* 搜索结果列表。
* @return items
*/
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
public SearchRestInfo withSearchInfo(SearchInfo searchInfo) {
this.searchInfo = searchInfo;
return this;
}
public SearchRestInfo withSearchInfo(Consumer searchInfoSetter) {
if (this.searchInfo == null) {
this.searchInfo = new SearchInfo();
searchInfoSetter.accept(this.searchInfo);
}
return this;
}
/**
* Get searchInfo
* @return searchInfo
*/
public SearchInfo getSearchInfo() {
return searchInfo;
}
public void setSearchInfo(SearchInfo searchInfo) {
this.searchInfo = searchInfo;
}
public SearchRestInfo withImageInfo(SearchRestInfoImageInfo imageInfo) {
this.imageInfo = imageInfo;
return this;
}
public SearchRestInfo withImageInfo(Consumer imageInfoSetter) {
if (this.imageInfo == null) {
this.imageInfo = new SearchRestInfoImageInfo();
imageInfoSetter.accept(this.imageInfo);
}
return this;
}
/**
* Get imageInfo
* @return imageInfo
*/
public SearchRestInfoImageInfo getImageInfo() {
return imageInfo;
}
public void setImageInfo(SearchRestInfoImageInfo imageInfo) {
this.imageInfo = imageInfo;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SearchRestInfo that = (SearchRestInfo) obj;
return Objects.equals(this.items, that.items) && Objects.equals(this.searchInfo, that.searchInfo)
&& Objects.equals(this.imageInfo, that.imageInfo);
}
@Override
public int hashCode() {
return Objects.hash(items, searchInfo, imageInfo);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SearchRestInfo {\n");
sb.append(" items: ").append(toIndentedString(items)).append("\n");
sb.append(" searchInfo: ").append(toIndentedString(searchInfo)).append("\n");
sb.append(" imageInfo: ").append(toIndentedString(imageInfo)).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 ");
}
}