com.aliyuncs.vcs.model.v20200515.SearchFaceResponse Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.vcs.model.v20200515;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.vcs.transform.v20200515.SearchFaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SearchFaceResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNo;
private Integer totalPage;
private Integer pageSize;
private Integer totalCount;
private List records;
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Integer getTotalPage() {
return this.totalPage;
}
public void setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List getRecords() {
return this.records;
}
public void setRecords(List records) {
this.records = records;
}
public static class Record {
private String gbId;
private String targetImageUrl;
private Float rightBottomY;
private String imageUrl;
private Float leftTopY;
private Float score;
private String sourceId;
private Float rightBottomX;
private Float leftTopX;
private String matchSuggestion;
public String getGbId() {
return this.gbId;
}
public void setGbId(String gbId) {
this.gbId = gbId;
}
public String getTargetImageUrl() {
return this.targetImageUrl;
}
public void setTargetImageUrl(String targetImageUrl) {
this.targetImageUrl = targetImageUrl;
}
public Float getRightBottomY() {
return this.rightBottomY;
}
public void setRightBottomY(Float rightBottomY) {
this.rightBottomY = rightBottomY;
}
public String getImageUrl() {
return this.imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public Float getLeftTopY() {
return this.leftTopY;
}
public void setLeftTopY(Float leftTopY) {
this.leftTopY = leftTopY;
}
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
public Float getRightBottomX() {
return this.rightBottomX;
}
public void setRightBottomX(Float rightBottomX) {
this.rightBottomX = rightBottomX;
}
public Float getLeftTopX() {
return this.leftTopX;
}
public void setLeftTopX(Float leftTopX) {
this.leftTopX = leftTopX;
}
public String getMatchSuggestion() {
return this.matchSuggestion;
}
public void setMatchSuggestion(String matchSuggestion) {
this.matchSuggestion = matchSuggestion;
}
}
}
@Override
public SearchFaceResponse getInstance(UnmarshallerContext context) {
return SearchFaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy