com.aliyuncs.vod.model.v20170321.GetVideoInfoResponse 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.GetVideoInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVideoInfoResponse extends AcsResponse {
private String aI;
private String requestId;
private Video video;
public String getAI() {
return this.aI;
}
public void setAI(String aI) {
this.aI = aI;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Video getVideo() {
return this.video;
}
public void setVideo(Video video) {
this.video = video;
}
public static class Video {
private String storageLocation;
private String creationTime;
private String status;
private Long cateId;
private String videoId;
private String createTime;
private String downloadSwitch;
private String tags;
private String modificationTime;
private String regionId;
private String customMediaInfo;
private String cateName;
private String description;
private String preprocessStatus;
private String appId;
private Long size;
private String coverURL;
private String templateGroupId;
private Float duration;
private String title;
private String auditStatus;
private String modifyTime;
private String storageClass;
private String restoreStatus;
private String restoreExpiration;
private List thumbnailList;
private List snapshots;
public String getStorageLocation() {
return this.storageLocation;
}
public void setStorageLocation(String storageLocation) {
this.storageLocation = storageLocation;
}
public String getCreationTime() {
return this.creationTime;
}
public void setCreationTime(String creationTime) {
this.creationTime = creationTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getCateId() {
return this.cateId;
}
public void setCateId(Long cateId) {
this.cateId = cateId;
}
public String getVideoId() {
return this.videoId;
}
public void setVideoId(String videoId) {
this.videoId = videoId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getDownloadSwitch() {
return this.downloadSwitch;
}
public void setDownloadSwitch(String downloadSwitch) {
this.downloadSwitch = downloadSwitch;
}
public String getTags() {
return this.tags;
}
public void setTags(String tags) {
this.tags = tags;
}
public String getModificationTime() {
return this.modificationTime;
}
public void setModificationTime(String modificationTime) {
this.modificationTime = modificationTime;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getCustomMediaInfo() {
return this.customMediaInfo;
}
public void setCustomMediaInfo(String customMediaInfo) {
this.customMediaInfo = customMediaInfo;
}
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 getPreprocessStatus() {
return this.preprocessStatus;
}
public void setPreprocessStatus(String preprocessStatus) {
this.preprocessStatus = preprocessStatus;
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
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 String getTemplateGroupId() {
return this.templateGroupId;
}
public void setTemplateGroupId(String templateGroupId) {
this.templateGroupId = templateGroupId;
}
public Float getDuration() {
return this.duration;
}
public void setDuration(Float duration) {
this.duration = duration;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuditStatus() {
return this.auditStatus;
}
public void setAuditStatus(String auditStatus) {
this.auditStatus = auditStatus;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
public String getStorageClass() {
return this.storageClass;
}
public void setStorageClass(String storageClass) {
this.storageClass = storageClass;
}
public String getRestoreStatus() {
return this.restoreStatus;
}
public void setRestoreStatus(String restoreStatus) {
this.restoreStatus = restoreStatus;
}
public String getRestoreExpiration() {
return this.restoreExpiration;
}
public void setRestoreExpiration(String restoreExpiration) {
this.restoreExpiration = restoreExpiration;
}
public List getThumbnailList() {
return this.thumbnailList;
}
public void setThumbnailList(List thumbnailList) {
this.thumbnailList = thumbnailList;
}
public List getSnapshots() {
return this.snapshots;
}
public void setSnapshots(List snapshots) {
this.snapshots = snapshots;
}
public static class Thumbnail {
private String uRL;
public String getURL() {
return this.uRL;
}
public void setURL(String uRL) {
this.uRL = uRL;
}
}
}
@Override
public GetVideoInfoResponse getInstance(UnmarshallerContext context) {
return GetVideoInfoResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy