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

com.aliyun.ice20201109.models.DeleteCategoryRequest Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy