com.aliyuncs.vcs.model.v20200515.RecognizeImageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-vcs Show documentation
Show all versions of aliyun-java-sdk-vcs Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.RecognizeImageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RecognizeImageResponse 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 List bodyList;
private List faceList;
public List getBodyList() {
return this.bodyList;
}
public void setBodyList(List bodyList) {
this.bodyList = bodyList;
}
public List getFaceList() {
return this.faceList;
}
public void setFaceList(List faceList) {
this.faceList = faceList;
}
public static class Body {
private String respiratorColor;
private String rightBottomY;
private String feature;
private String leftTopY;
private String imageBaseSixFour;
private String fileName;
private String rightBottomX;
private String localFeature;
private String leftTopX;
public String getRespiratorColor() {
return this.respiratorColor;
}
public void setRespiratorColor(String respiratorColor) {
this.respiratorColor = respiratorColor;
}
public String getRightBottomY() {
return this.rightBottomY;
}
public void setRightBottomY(String rightBottomY) {
this.rightBottomY = rightBottomY;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getLeftTopY() {
return this.leftTopY;
}
public void setLeftTopY(String leftTopY) {
this.leftTopY = leftTopY;
}
public String getImageBaseSixFour() {
return this.imageBaseSixFour;
}
public void setImageBaseSixFour(String imageBaseSixFour) {
this.imageBaseSixFour = imageBaseSixFour;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getRightBottomX() {
return this.rightBottomX;
}
public void setRightBottomX(String rightBottomX) {
this.rightBottomX = rightBottomX;
}
public String getLocalFeature() {
return this.localFeature;
}
public void setLocalFeature(String localFeature) {
this.localFeature = localFeature;
}
public String getLeftTopX() {
return this.leftTopX;
}
public void setLeftTopX(String leftTopX) {
this.leftTopX = leftTopX;
}
}
public static class Face {
private Float quality;
private String respiratorColor;
private Float keyPointQuality;
private String rightBottomY;
private String feature;
private String leftTopY;
private String imageBaseSixFour;
private String fileName;
private String rightBottomX;
private String localFeature;
private String leftTopX;
public Float getQuality() {
return this.quality;
}
public void setQuality(Float quality) {
this.quality = quality;
}
public String getRespiratorColor() {
return this.respiratorColor;
}
public void setRespiratorColor(String respiratorColor) {
this.respiratorColor = respiratorColor;
}
public Float getKeyPointQuality() {
return this.keyPointQuality;
}
public void setKeyPointQuality(Float keyPointQuality) {
this.keyPointQuality = keyPointQuality;
}
public String getRightBottomY() {
return this.rightBottomY;
}
public void setRightBottomY(String rightBottomY) {
this.rightBottomY = rightBottomY;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getLeftTopY() {
return this.leftTopY;
}
public void setLeftTopY(String leftTopY) {
this.leftTopY = leftTopY;
}
public String getImageBaseSixFour() {
return this.imageBaseSixFour;
}
public void setImageBaseSixFour(String imageBaseSixFour) {
this.imageBaseSixFour = imageBaseSixFour;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getRightBottomX() {
return this.rightBottomX;
}
public void setRightBottomX(String rightBottomX) {
this.rightBottomX = rightBottomX;
}
public String getLocalFeature() {
return this.localFeature;
}
public void setLocalFeature(String localFeature) {
this.localFeature = localFeature;
}
public String getLeftTopX() {
return this.leftTopX;
}
public void setLeftTopX(String leftTopX) {
this.leftTopX = leftTopX;
}
}
}
@Override
public RecognizeImageResponse getInstance(UnmarshallerContext context) {
return RecognizeImageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy