com.huaweicloud.sdk.frs.v2.model.DetectLiveByUrlIntlResponse 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 DetectLiveByUrlIntlResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "video-result")
private LiveDetectRespVideoresult videoResult;
@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 DetectLiveByUrlIntlResponse withVideoResult(LiveDetectRespVideoresult videoResult) {
this.videoResult = videoResult;
return this;
}
public DetectLiveByUrlIntlResponse withVideoResult(Consumer videoResultSetter) {
if (this.videoResult == null) {
this.videoResult = new LiveDetectRespVideoresult();
videoResultSetter.accept(this.videoResult);
}
return this;
}
/**
* Get videoResult
* @return videoResult
*/
public LiveDetectRespVideoresult getVideoResult() {
return videoResult;
}
public void setVideoResult(LiveDetectRespVideoresult videoResult) {
this.videoResult = videoResult;
}
public DetectLiveByUrlIntlResponse withWarningList(List warningList) {
this.warningList = warningList;
return this;
}
public DetectLiveByUrlIntlResponse addWarningListItem(WarningList warningListItem) {
if (this.warningList == null) {
this.warningList = new ArrayList<>();
}
this.warningList.add(warningListItem);
return this;
}
public DetectLiveByUrlIntlResponse withWarningList(Consumer> warningListSetter) {
if (this.warningList == null) {
this.warningList = new ArrayList<>();
}
warningListSetter.accept(this.warningList);
return this;
}
/**
* [警告信息列表,WarningList结构见[WarningList](https://support.huaweicloud.com/api-face/face_02_0077.html)。调用失败时无此字段](tag:hc) [警告信息列表,WarningList结构见[WarningList](https://support.huaweicloud.com/intl/zh-cn/api-face/face_02_0077.html)。调用失败时无此字段](tag:hk)
* @return warningList
*/
public List getWarningList() {
return warningList;
}
public void setWarningList(List warningList) {
this.warningList = warningList;
}
public DetectLiveByUrlIntlResponse 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;
}
DetectLiveByUrlIntlResponse that = (DetectLiveByUrlIntlResponse) obj;
return Objects.equals(this.videoResult, that.videoResult) && Objects.equals(this.warningList, that.warningList)
&& Objects.equals(this.xRequestId, that.xRequestId);
}
@Override
public int hashCode() {
return Objects.hash(videoResult, warningList, xRequestId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DetectLiveByUrlIntlResponse {\n");
sb.append(" videoResult: ").append(toIndentedString(videoResult)).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 ");
}
}