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

com.aliyuncs.rtc.model.v20180111.DescribeRecordDetailResponse 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.rtc.model.v20180111;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.rtc.transform.v20180111.DescribeRecordDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeRecordDetailResponse extends AcsResponse {

	private String requestId;

	private List recordDetailInfos;

	private Duration duration;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public List getRecordDetailInfos() {
		return this.recordDetailInfos;
	}

	public void setRecordDetailInfos(List recordDetailInfos) {
		this.recordDetailInfos = recordDetailInfos;
	}

	public Duration getDuration() {
		return this.duration;
	}

	public void setDuration(Duration duration) {
		this.duration = duration;
	}

	public static class RecordDetailInfo {

		private String uid;

		private String startTime;

		private String endTime;

		private String deviceType;

		private String sDKVersion;

		public String getUid() {
			return this.uid;
		}

		public void setUid(String uid) {
			this.uid = uid;
		}

		public String getStartTime() {
			return this.startTime;
		}

		public void setStartTime(String startTime) {
			this.startTime = startTime;
		}

		public String getEndTime() {
			return this.endTime;
		}

		public void setEndTime(String endTime) {
			this.endTime = endTime;
		}

		public String getDeviceType() {
			return this.deviceType;
		}

		public void setDeviceType(String deviceType) {
			this.deviceType = deviceType;
		}

		public String getSDKVersion() {
			return this.sDKVersion;
		}

		public void setSDKVersion(String sDKVersion) {
			this.sDKVersion = sDKVersion;
		}
	}

	public static class Duration {

		private Float audio;

		private Float sd;

		private Float hd;

		private Float fhd;

		private Float all;

		public Float getAudio() {
			return this.audio;
		}

		public void setAudio(Float audio) {
			this.audio = audio;
		}

		public Float getSd() {
			return this.sd;
		}

		public void setSd(Float sd) {
			this.sd = sd;
		}

		public Float getHd() {
			return this.hd;
		}

		public void setHd(Float hd) {
			this.hd = hd;
		}

		public Float getFhd() {
			return this.fhd;
		}

		public void setFhd(Float fhd) {
			this.fhd = fhd;
		}

		public Float getAll() {
			return this.all;
		}

		public void setAll(Float all) {
			this.all = all;
		}
	}

	@Override
	public DescribeRecordDetailResponse getInstance(UnmarshallerContext context) {
		return	DescribeRecordDetailResponseUnmarshaller.unmarshall(this, context);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy