
com.tencentcloudapi.ivld.v20210903.models.UpdateCustomCategoryRequest 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.ivld.v20210903.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class UpdateCustomCategoryRequest extends AbstractModel{
/**
* 自定义人物类型Id
*/
@SerializedName("CategoryId")
@Expose
private String CategoryId;
/**
* 一级自定义人物类型
*/
@SerializedName("L1Category")
@Expose
private String L1Category;
/**
* 二级自定义人物类型
*/
@SerializedName("L2Category")
@Expose
private String L2Category;
/**
* Get 自定义人物类型Id
* @return CategoryId 自定义人物类型Id
*/
public String getCategoryId() {
return this.CategoryId;
}
/**
* Set 自定义人物类型Id
* @param CategoryId 自定义人物类型Id
*/
public void setCategoryId(String CategoryId) {
this.CategoryId = CategoryId;
}
/**
* Get 一级自定义人物类型
* @return L1Category 一级自定义人物类型
*/
public String getL1Category() {
return this.L1Category;
}
/**
* Set 一级自定义人物类型
* @param L1Category 一级自定义人物类型
*/
public void setL1Category(String L1Category) {
this.L1Category = L1Category;
}
/**
* Get 二级自定义人物类型
* @return L2Category 二级自定义人物类型
*/
public String getL2Category() {
return this.L2Category;
}
/**
* Set 二级自定义人物类型
* @param L2Category 二级自定义人物类型
*/
public void setL2Category(String L2Category) {
this.L2Category = L2Category;
}
public UpdateCustomCategoryRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public UpdateCustomCategoryRequest(UpdateCustomCategoryRequest source) {
if (source.CategoryId != null) {
this.CategoryId = new String(source.CategoryId);
}
if (source.L1Category != null) {
this.L1Category = new String(source.L1Category);
}
if (source.L2Category != null) {
this.L2Category = new String(source.L2Category);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "CategoryId", this.CategoryId);
this.setParamSimple(map, prefix + "L1Category", this.L1Category);
this.setParamSimple(map, prefix + "L2Category", this.L2Category);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy