com.aliyuncs.live.model.v20161101.DescribeCasterScenesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-live Show documentation
Show all versions of aliyun-java-sdk-live Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* 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.DescribeCasterScenesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCasterScenesResponse extends AcsResponse {
private String requestId;
private Integer total;
private List sceneList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public List getSceneList() {
return this.sceneList;
}
public void setSceneList(List sceneList) {
this.sceneList = sceneList;
}
public static class Scene {
private String layoutId;
private String outputType;
private String rtsUrl;
private String sceneId;
private String sceneName;
private Integer status;
private String streamUrl;
private List streamInfos;
private List componentIds;
public String getLayoutId() {
return this.layoutId;
}
public void setLayoutId(String layoutId) {
this.layoutId = layoutId;
}
public String getOutputType() {
return this.outputType;
}
public void setOutputType(String outputType) {
this.outputType = outputType;
}
public String getRtsUrl() {
return this.rtsUrl;
}
public void setRtsUrl(String rtsUrl) {
this.rtsUrl = rtsUrl;
}
public String getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
}
public String getSceneName() {
return this.sceneName;
}
public void setSceneName(String sceneName) {
this.sceneName = sceneName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getStreamUrl() {
return this.streamUrl;
}
public void setStreamUrl(String streamUrl) {
this.streamUrl = streamUrl;
}
public List getStreamInfos() {
return this.streamInfos;
}
public void setStreamInfos(List streamInfos) {
this.streamInfos = streamInfos;
}
public List getComponentIds() {
return this.componentIds;
}
public void setComponentIds(List componentIds) {
this.componentIds = componentIds;
}
public static class StreamInfo {
private String outputStreamUrl;
private String transcodeConfig;
private String videoFormat;
public String getOutputStreamUrl() {
return this.outputStreamUrl;
}
public void setOutputStreamUrl(String outputStreamUrl) {
this.outputStreamUrl = outputStreamUrl;
}
public String getTranscodeConfig() {
return this.transcodeConfig;
}
public void setTranscodeConfig(String transcodeConfig) {
this.transcodeConfig = transcodeConfig;
}
public String getVideoFormat() {
return this.videoFormat;
}
public void setVideoFormat(String videoFormat) {
this.videoFormat = videoFormat;
}
}
}
@Override
public DescribeCasterScenesResponse getInstance(UnmarshallerContext context) {
return DescribeCasterScenesResponseUnmarshaller.unmarshall(this, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy