
com.aliyun.ice20201109.models.DeleteEditingProjectMaterialsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DeleteEditingProjectMaterialsRequest extends TeaModel {
/**
* The material ID. Separate multiple material IDs with commas (,). You can specify up to 10 IDs.
* This parameter is required.
*
* example:
* cbd721b418a89a7dafb1dc,86f5d534c95997c55c96f
*/
@NameInMap("MaterialIds")
public String materialIds;
/**
* The material type. Valid values:
* \- video
* \- image
* \- audio
* \- subtitle
* \- text
* This parameter is required.
*
* example:
* video
*/
@NameInMap("MaterialType")
public String materialType;
/**
* The ID of the online editing project.
* This parameter is required.
*
* example:
* fb2101cb318
*/
@NameInMap("ProjectId")
public String projectId;
public static DeleteEditingProjectMaterialsRequest build(java.util.Map map) throws Exception {
DeleteEditingProjectMaterialsRequest self = new DeleteEditingProjectMaterialsRequest();
return TeaModel.build(map, self);
}
public DeleteEditingProjectMaterialsRequest setMaterialIds(String materialIds) {
this.materialIds = materialIds;
return this;
}
public String getMaterialIds() {
return this.materialIds;
}
public DeleteEditingProjectMaterialsRequest setMaterialType(String materialType) {
this.materialType = materialType;
return this;
}
public String getMaterialType() {
return this.materialType;
}
public DeleteEditingProjectMaterialsRequest setProjectId(String projectId) {
this.projectId = projectId;
return this;
}
public String getProjectId() {
return this.projectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy