com.aliyuncs.vod.model.v20170321.AddEditingProjectMaterialsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-vod Show documentation
Show all versions of aliyun-java-sdk-vod Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.vod.model.v20170321;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.vod.transform.v20170321.AddEditingProjectMaterialsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddEditingProjectMaterialsResponse extends AcsResponse {
private String requestId;
private List materialList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getMaterialList() {
return this.materialList;
}
public void setMaterialList(List materialList) {
this.materialList = materialList;
}
public static class Material {
private String status;
private Integer cateId;
private String createTime;
private String materialType;
private String tags;
private String spriteConfig;
private String cateName;
private String description;
private String materialId;
private Long size;
private String coverURL;
private Float duration;
private Long customerId;
private String title;
private String modifyTime;
private List sprites;
private List snapshots;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getCateId() {
return this.cateId;
}
public void setCateId(Integer cateId) {
this.cateId = cateId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getMaterialType() {
return this.materialType;
}
public void setMaterialType(String materialType) {
this.materialType = materialType;
}
public String getTags() {
return this.tags;
}
public void setTags(String tags) {
this.tags = tags;
}
public String getSpriteConfig() {
return this.spriteConfig;
}
public void setSpriteConfig(String spriteConfig) {
this.spriteConfig = spriteConfig;
}
public String getCateName() {
return this.cateName;
}
public void setCateName(String cateName) {
this.cateName = cateName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getMaterialId() {
return this.materialId;
}
public void setMaterialId(String materialId) {
this.materialId = materialId;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
public String getCoverURL() {
return this.coverURL;
}
public void setCoverURL(String coverURL) {
this.coverURL = coverURL;
}
public Float getDuration() {
return this.duration;
}
public void setDuration(Float duration) {
this.duration = duration;
}
public Long getCustomerId() {
return this.customerId;
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
public List getSprites() {
return this.sprites;
}
public void setSprites(List sprites) {
this.sprites = sprites;
}
public List getSnapshots() {
return this.snapshots;
}
public void setSnapshots(List snapshots) {
this.snapshots = snapshots;
}
}
@Override
public AddEditingProjectMaterialsResponse getInstance(UnmarshallerContext context) {
return AddEditingProjectMaterialsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy