com.aliyun.ice20201109.models.DeleteCategoryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DeleteCategoryRequest extends TeaModel {
/**
* The category ID. You can use one of the following methods to obtain the ID:
*
* - Log on to the Intelligent Media Services (IMS) console and choose Media Asset Management > Category Management to view the category ID.
* - View the value of CateId returned by the AddCategory operation that you called to create a category.
* - View the value of CateId returned by the GetCategories operation that you called to query a category.
*
* This parameter is required.
*
* example:
* 46
*/
@NameInMap("CateId")
public Long cateId;
public static DeleteCategoryRequest build(java.util.Map map) throws Exception {
DeleteCategoryRequest self = new DeleteCategoryRequest();
return TeaModel.build(map, self);
}
public DeleteCategoryRequest setCateId(Long cateId) {
this.cateId = cateId;
return this;
}
public Long getCateId() {
return this.cateId;
}
}