
com.aliyun.ice20201109.models.UpdateCategoryRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class UpdateCategoryRequest extends TeaModel {
@NameInMap("CateId")
public Long cateId;
@NameInMap("CateName")
public String cateName;
public static UpdateCategoryRequest build(java.util.Map map) throws Exception {
UpdateCategoryRequest self = new UpdateCategoryRequest();
return TeaModel.build(map, self);
}
public UpdateCategoryRequest setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
public UpdateCategoryRequest setCateName(String cateName) {
this.cateName = cateName;
return this;
}
public String getCateName() {
return this.cateName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy