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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class AddEditingProjectMaterialsRequest extends TeaModel {
    /**
     * 

The material ID. Separate multiple material IDs with commas (,). Each type supports up to 10 material IDs. The following material types are supported:

*
    *
  • video
  • *
  • audio
  • *
  • image
  • *
  • liveStream
  • *
  • editingProject
  • *
*

This parameter is required.

* * example: *

{"video":"2e057304fcd9b145c5cafc", "image":"8021a8d493da643c8acd98*,cb6307a4edea614d8b3f3c", "liveStream": "[{\"appName\":\"testrecord\",\"domainName\":\"test.alivecdn.com\",\"liveUrl\":\"rtmp://test.alivecdn.com/testrecord/teststream\",\"streamName\":\"teststream\"}]", "editingProject": "9b145c5cafc2e057304fcd"}

*/ @NameInMap("MaterialMaps") public String materialMaps; /** *

The ID of the online editing project.

*

This parameter is required.

* * example: *

b2101cb318c

*/ @NameInMap("ProjectId") public String projectId; public static AddEditingProjectMaterialsRequest build(java.util.Map map) throws Exception { AddEditingProjectMaterialsRequest self = new AddEditingProjectMaterialsRequest(); return TeaModel.build(map, self); } public AddEditingProjectMaterialsRequest setMaterialMaps(String materialMaps) { this.materialMaps = materialMaps; return this; } public String getMaterialMaps() { return this.materialMaps; } public AddEditingProjectMaterialsRequest setProjectId(String projectId) { this.projectId = projectId; return this; } public String getProjectId() { return this.projectId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy