
com.tencentcloudapi.live.v20180801.models.DescribeLiveDomainPlayInfoListResponse Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.tencentcloudapi.live.v20180801.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeLiveDomainPlayInfoListResponse extends AbstractModel{
/**
* 数据时间,格式为yyyy-mm-dd HH:MM:SS。
*/
@SerializedName("Time")
@Expose
private String Time;
/**
* 实时总带宽。
*/
@SerializedName("TotalBandwidth")
@Expose
private Float TotalBandwidth;
/**
* 实时总流量。
*/
@SerializedName("TotalFlux")
@Expose
private Float TotalFlux;
/**
* 总请求数。
*/
@SerializedName("TotalRequest")
@Expose
private Long TotalRequest;
/**
* 实时总连接数。
*/
@SerializedName("TotalOnline")
@Expose
private Long TotalOnline;
/**
* 分域名的数据情况。
*/
@SerializedName("DomainInfoList")
@Expose
private DomainInfoList [] DomainInfoList;
/**
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get 数据时间,格式为yyyy-mm-dd HH:MM:SS。
* @return Time 数据时间,格式为yyyy-mm-dd HH:MM:SS。
*/
public String getTime() {
return this.Time;
}
/**
* Set 数据时间,格式为yyyy-mm-dd HH:MM:SS。
* @param Time 数据时间,格式为yyyy-mm-dd HH:MM:SS。
*/
public void setTime(String Time) {
this.Time = Time;
}
/**
* Get 实时总带宽。
* @return TotalBandwidth 实时总带宽。
*/
public Float getTotalBandwidth() {
return this.TotalBandwidth;
}
/**
* Set 实时总带宽。
* @param TotalBandwidth 实时总带宽。
*/
public void setTotalBandwidth(Float TotalBandwidth) {
this.TotalBandwidth = TotalBandwidth;
}
/**
* Get 实时总流量。
* @return TotalFlux 实时总流量。
*/
public Float getTotalFlux() {
return this.TotalFlux;
}
/**
* Set 实时总流量。
* @param TotalFlux 实时总流量。
*/
public void setTotalFlux(Float TotalFlux) {
this.TotalFlux = TotalFlux;
}
/**
* Get 总请求数。
* @return TotalRequest 总请求数。
*/
public Long getTotalRequest() {
return this.TotalRequest;
}
/**
* Set 总请求数。
* @param TotalRequest 总请求数。
*/
public void setTotalRequest(Long TotalRequest) {
this.TotalRequest = TotalRequest;
}
/**
* Get 实时总连接数。
* @return TotalOnline 实时总连接数。
*/
public Long getTotalOnline() {
return this.TotalOnline;
}
/**
* Set 实时总连接数。
* @param TotalOnline 实时总连接数。
*/
public void setTotalOnline(Long TotalOnline) {
this.TotalOnline = TotalOnline;
}
/**
* Get 分域名的数据情况。
* @return DomainInfoList 分域名的数据情况。
*/
public DomainInfoList [] getDomainInfoList() {
return this.DomainInfoList;
}
/**
* Set 分域名的数据情况。
* @param DomainInfoList 分域名的数据情况。
*/
public void setDomainInfoList(DomainInfoList [] DomainInfoList) {
this.DomainInfoList = DomainInfoList;
}
/**
* Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeLiveDomainPlayInfoListResponse() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeLiveDomainPlayInfoListResponse(DescribeLiveDomainPlayInfoListResponse source) {
if (source.Time != null) {
this.Time = new String(source.Time);
}
if (source.TotalBandwidth != null) {
this.TotalBandwidth = new Float(source.TotalBandwidth);
}
if (source.TotalFlux != null) {
this.TotalFlux = new Float(source.TotalFlux);
}
if (source.TotalRequest != null) {
this.TotalRequest = new Long(source.TotalRequest);
}
if (source.TotalOnline != null) {
this.TotalOnline = new Long(source.TotalOnline);
}
if (source.DomainInfoList != null) {
this.DomainInfoList = new DomainInfoList[source.DomainInfoList.length];
for (int i = 0; i < source.DomainInfoList.length; i++) {
this.DomainInfoList[i] = new DomainInfoList(source.DomainInfoList[i]);
}
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Time", this.Time);
this.setParamSimple(map, prefix + "TotalBandwidth", this.TotalBandwidth);
this.setParamSimple(map, prefix + "TotalFlux", this.TotalFlux);
this.setParamSimple(map, prefix + "TotalRequest", this.TotalRequest);
this.setParamSimple(map, prefix + "TotalOnline", this.TotalOnline);
this.setParamArrayObj(map, prefix + "DomainInfoList.", this.DomainInfoList);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy