com.huaweicloud.sdk.frs.v2.model.DetectLiveFaceByFileResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.frs.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
public class DetectLiveFaceByFileResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "result")
private LiveDetectFaceRespResult result;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "warning-list")
private List warningList = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Request-Id")
private String xRequestId;
public DetectLiveFaceByFileResponse withResult(LiveDetectFaceRespResult result) {
this.result = result;
return this;
}
public DetectLiveFaceByFileResponse withResult(Consumer resultSetter) {
if (this.result == null) {
this.result = new LiveDetectFaceRespResult();
resultSetter.accept(this.result);
}
return this;
}
/**
* Get result
* @return result
*/
public LiveDetectFaceRespResult getResult() {
return result;
}
public void setResult(LiveDetectFaceRespResult result) {
this.result = result;
}
public DetectLiveFaceByFileResponse withWarningList(List warningList) {
this.warningList = warningList;
return this;
}
public DetectLiveFaceByFileResponse addWarningListItem(WarningList warningListItem) {
if (this.warningList == null) {
this.warningList = new ArrayList<>();
}
this.warningList.add(warningListItem);
return this;
}
public DetectLiveFaceByFileResponse withWarningList(Consumer> warningListSetter) {
if (this.warningList == null) {
this.warningList = new ArrayList<>();
}
warningListSetter.accept(this.warningList);
return this;
}
/**
* 警告信息列表。 调用失败时无此字段。
* @return warningList
*/
public List getWarningList() {
return warningList;
}
public void setWarningList(List warningList) {
this.warningList = warningList;
}
public DetectLiveFaceByFileResponse withXRequestId(String xRequestId) {
this.xRequestId = xRequestId;
return this;
}
/**
* Get xRequestId
* @return xRequestId
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "X-Request-Id")
public String getXRequestId() {
return xRequestId;
}
public void setXRequestId(String xRequestId) {
this.xRequestId = xRequestId;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
DetectLiveFaceByFileResponse that = (DetectLiveFaceByFileResponse) obj;
return Objects.equals(this.result, that.result) && Objects.equals(this.warningList, that.warningList)
&& Objects.equals(this.xRequestId, that.xRequestId);
}
@Override
public int hashCode() {
return Objects.hash(result, warningList, xRequestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DetectLiveFaceByFileResponse {\n");
sb.append(" result: ").append(toIndentedString(result)).append("\n");
sb.append(" warningList: ").append(toIndentedString(warningList)).append("\n");
sb.append(" xRequestId: ").append(toIndentedString(xRequestId)).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 ");
}
}