All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 {
    /**
     * 

This parameter is required.

* * example: *

43

*/ @NameInMap("CateId") public Long cateId; /** *

This parameter is required.

*/ @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