com.tencentcloudapi.vod.v20180717.models.AiSampleFaceOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class AiSampleFaceOperation extends AbstractModel{
/**
* 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
*/
@SerializedName("Type")
@Expose
private String Type;
/**
* 人脸 ID 集合,当 Type为delete 时,该字段必填。
*/
@SerializedName("FaceIds")
@Expose
private String [] FaceIds;
/**
* 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
当 Type为add 或 reset 时,该字段必填;
数组长度限制:5 张图片。
注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
*/
@SerializedName("FaceContents")
@Expose
private String [] FaceContents;
/**
* Get 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
* @return Type 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
*/
public String getType() {
return this.Type;
}
/**
* Set 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
* @param Type 操作类型,可选值:add(添加)、delete(删除)、reset(重置)。重置操作将清空该人物已有人脸数据,并添加 FaceContents 指定人脸数据。
*/
public void setType(String Type) {
this.Type = Type;
}
/**
* Get 人脸 ID 集合,当 Type为delete 时,该字段必填。
* @return FaceIds 人脸 ID 集合,当 Type为delete 时,该字段必填。
*/
public String [] getFaceIds() {
return this.FaceIds;
}
/**
* Set 人脸 ID 集合,当 Type为delete 时,该字段必填。
* @param FaceIds 人脸 ID 集合,当 Type为delete 时,该字段必填。
*/
public void setFaceIds(String [] FaceIds) {
this.FaceIds = FaceIds;
}
/**
* Get 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
当 Type为add 或 reset 时,该字段必填;
数组长度限制:5 张图片。
注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
* @return FaceContents 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
当 Type为add 或 reset 时,该字段必填;
数组长度限制:5 张图片。
注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
*/
public String [] getFaceContents() {
return this.FaceContents;
}
/**
* Set 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
当 Type为add 或 reset 时,该字段必填;
数组长度限制:5 张图片。
注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
* @param FaceContents 人脸图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串集合。
当 Type为add 或 reset 时,该字段必填;
数组长度限制:5 张图片。
注意:图片必须是单人像正面人脸较清晰的照片,像素不低于 200*200。
*/
public void setFaceContents(String [] FaceContents) {
this.FaceContents = FaceContents;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamArraySimple(map, prefix + "FaceIds.", this.FaceIds);
this.setParamArraySimple(map, prefix + "FaceContents.", this.FaceContents);
}
}