
com.tencentcloudapi.bda.v20200324.models.GroupInfo Maven / Gradle / Ivy
/*
* 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.bda.v20200324.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class GroupInfo extends AbstractModel{
/**
* 人体库名称。
*/
@SerializedName("GroupName")
@Expose
private String GroupName;
/**
* 人体库ID。
*/
@SerializedName("GroupId")
@Expose
private String GroupId;
/**
* 人体库信息备注。
*/
@SerializedName("Tag")
@Expose
private String Tag;
/**
* 人体识别所用的算法模型版本。
*/
@SerializedName("BodyModelVersion")
@Expose
private String BodyModelVersion;
/**
* Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
*/
@SerializedName("CreationTimestamp")
@Expose
private Long CreationTimestamp;
/**
* Get 人体库名称。
* @return GroupName 人体库名称。
*/
public String getGroupName() {
return this.GroupName;
}
/**
* Set 人体库名称。
* @param GroupName 人体库名称。
*/
public void setGroupName(String GroupName) {
this.GroupName = GroupName;
}
/**
* Get 人体库ID。
* @return GroupId 人体库ID。
*/
public String getGroupId() {
return this.GroupId;
}
/**
* Set 人体库ID。
* @param GroupId 人体库ID。
*/
public void setGroupId(String GroupId) {
this.GroupId = GroupId;
}
/**
* Get 人体库信息备注。
* @return Tag 人体库信息备注。
*/
public String getTag() {
return this.Tag;
}
/**
* Set 人体库信息备注。
* @param Tag 人体库信息备注。
*/
public void setTag(String Tag) {
this.Tag = Tag;
}
/**
* Get 人体识别所用的算法模型版本。
* @return BodyModelVersion 人体识别所用的算法模型版本。
*/
public String getBodyModelVersion() {
return this.BodyModelVersion;
}
/**
* Set 人体识别所用的算法模型版本。
* @param BodyModelVersion 人体识别所用的算法模型版本。
*/
public void setBodyModelVersion(String BodyModelVersion) {
this.BodyModelVersion = BodyModelVersion;
}
/**
* Get Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
* @return CreationTimestamp Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
*/
public Long getCreationTimestamp() {
return this.CreationTimestamp;
}
/**
* Set Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
* @param CreationTimestamp Group的创建时间和日期 CreationTimestamp。CreationTimestamp 的值是自 Unix 纪元时间到Group创建时间的毫秒数。
Unix 纪元时间是 1970 年 1 月 1 日星期四,协调世界时 (UTC) 。
*/
public void setCreationTimestamp(Long CreationTimestamp) {
this.CreationTimestamp = CreationTimestamp;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "GroupName", this.GroupName);
this.setParamSimple(map, prefix + "GroupId", this.GroupId);
this.setParamSimple(map, prefix + "Tag", this.Tag);
this.setParamSimple(map, prefix + "BodyModelVersion", this.BodyModelVersion);
this.setParamSimple(map, prefix + "CreationTimestamp", this.CreationTimestamp);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy