![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.ice20201109.models.SearchMediaByFaceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class SearchMediaByFaceResponseBody extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("MediaInfoList")
public java.util.List mediaInfoList;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public String success;
@NameInMap("Total")
public Long total;
public static SearchMediaByFaceResponseBody build(java.util.Map map) throws Exception {
SearchMediaByFaceResponseBody self = new SearchMediaByFaceResponseBody();
return TeaModel.build(map, self);
}
public SearchMediaByFaceResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public SearchMediaByFaceResponseBody setMediaInfoList(java.util.List mediaInfoList) {
this.mediaInfoList = mediaInfoList;
return this;
}
public java.util.List getMediaInfoList() {
return this.mediaInfoList;
}
public SearchMediaByFaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public SearchMediaByFaceResponseBody setSuccess(String success) {
this.success = success;
return this;
}
public String getSuccess() {
return this.success;
}
public SearchMediaByFaceResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
public static class SearchMediaByFaceResponseBodyMediaInfoList extends TeaModel {
@NameInMap("MediaId")
public String mediaId;
public static SearchMediaByFaceResponseBodyMediaInfoList build(java.util.Map map) throws Exception {
SearchMediaByFaceResponseBodyMediaInfoList self = new SearchMediaByFaceResponseBodyMediaInfoList();
return TeaModel.build(map, self);
}
public SearchMediaByFaceResponseBodyMediaInfoList setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy