com.aliyuncs.live.model.v20161101.DescribeLiveRecordVodConfigsResponse Maven / Gradle / Ivy
/*
* 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.live.model.v20161101;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.live.transform.v20161101.DescribeLiveRecordVodConfigsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLiveRecordVodConfigsResponse extends AcsResponse {
private Integer pageNum;
private String requestId;
private Integer pageSize;
private String total;
private List liveRecordVodConfigs;
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotal() {
return this.total;
}
public void setTotal(String total) {
this.total = total;
}
public List getLiveRecordVodConfigs() {
return this.liveRecordVodConfigs;
}
public void setLiveRecordVodConfigs(List liveRecordVodConfigs) {
this.liveRecordVodConfigs = liveRecordVodConfigs;
}
public static class LiveRecordVodConfig {
private String storageLocation;
private String appName;
private String autoCompose;
private Integer onDemand;
private String streamName;
private String createTime;
private String vodTranscodeGroupId;
private Integer cycleDuration;
private String domainName;
private String composeVodTranscodeGroupId;
public String getStorageLocation() {
return this.storageLocation;
}
public void setStorageLocation(String storageLocation) {
this.storageLocation = storageLocation;
}
public String getAppName() {
return this.appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
public String getAutoCompose() {
return this.autoCompose;
}
public void setAutoCompose(String autoCompose) {
this.autoCompose = autoCompose;
}
public Integer getOnDemand() {
return this.onDemand;
}
public void setOnDemand(Integer onDemand) {
this.onDemand = onDemand;
}
public String getStreamName() {
return this.streamName;
}
public void setStreamName(String streamName) {
this.streamName = streamName;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getVodTranscodeGroupId() {
return this.vodTranscodeGroupId;
}
public void setVodTranscodeGroupId(String vodTranscodeGroupId) {
this.vodTranscodeGroupId = vodTranscodeGroupId;
}
public Integer getCycleDuration() {
return this.cycleDuration;
}
public void setCycleDuration(Integer cycleDuration) {
this.cycleDuration = cycleDuration;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getComposeVodTranscodeGroupId() {
return this.composeVodTranscodeGroupId;
}
public void setComposeVodTranscodeGroupId(String composeVodTranscodeGroupId) {
this.composeVodTranscodeGroupId = composeVodTranscodeGroupId;
}
}
@Override
public DescribeLiveRecordVodConfigsResponse getInstance(UnmarshallerContext context) {
return DescribeLiveRecordVodConfigsResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy