
com.tencentcloudapi.trtc.v20190722.models.SdkAppIdTrtcUsage 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.trtc.v20190722.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class SdkAppIdTrtcUsage extends AbstractModel{
/**
* 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
*/
@SerializedName("TimeKey")
@Expose
private String TimeKey;
/**
* 语音时长,单位:秒。
*/
@SerializedName("AudioTime")
@Expose
private Long AudioTime;
/**
* 音视频时长,单位:秒。
2019年10月11日前注册,没有变更为 [新计费模式](https://cloud.tencent.com/document/product/647/17157) 的用户才会返回此值。
*/
@SerializedName("AudioVideoTime")
@Expose
private Long AudioVideoTime;
/**
* 视频时长-标清SD,单位:秒。
*/
@SerializedName("VideoTimeSd")
@Expose
private Long VideoTimeSd;
/**
* 视频时长-高清HD,单位:秒。
*/
@SerializedName("VideoTimeHd")
@Expose
private Long VideoTimeHd;
/**
* 视频时长-超清HD,单位:秒。
*/
@SerializedName("VideoTimeHdp")
@Expose
private Long VideoTimeHdp;
/**
* Get 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
* @return TimeKey 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
*/
public String getTimeKey() {
return this.TimeKey;
}
/**
* Set 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
* @param TimeKey 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
*/
public void setTimeKey(String TimeKey) {
this.TimeKey = TimeKey;
}
/**
* Get 语音时长,单位:秒。
* @return AudioTime 语音时长,单位:秒。
*/
public Long getAudioTime() {
return this.AudioTime;
}
/**
* Set 语音时长,单位:秒。
* @param AudioTime 语音时长,单位:秒。
*/
public void setAudioTime(Long AudioTime) {
this.AudioTime = AudioTime;
}
/**
* Get 音视频时长,单位:秒。
2019年10月11日前注册,没有变更为 [新计费模式](https://cloud.tencent.com/document/product/647/17157) 的用户才会返回此值。
* @return AudioVideoTime 音视频时长,单位:秒。
2019年10月11日前注册,没有变更为 [新计费模式](https://cloud.tencent.com/document/product/647/17157) 的用户才会返回此值。
*/
public Long getAudioVideoTime() {
return this.AudioVideoTime;
}
/**
* Set 音视频时长,单位:秒。
2019年10月11日前注册,没有变更为 [新计费模式](https://cloud.tencent.com/document/product/647/17157) 的用户才会返回此值。
* @param AudioVideoTime 音视频时长,单位:秒。
2019年10月11日前注册,没有变更为 [新计费模式](https://cloud.tencent.com/document/product/647/17157) 的用户才会返回此值。
*/
public void setAudioVideoTime(Long AudioVideoTime) {
this.AudioVideoTime = AudioVideoTime;
}
/**
* Get 视频时长-标清SD,单位:秒。
* @return VideoTimeSd 视频时长-标清SD,单位:秒。
*/
public Long getVideoTimeSd() {
return this.VideoTimeSd;
}
/**
* Set 视频时长-标清SD,单位:秒。
* @param VideoTimeSd 视频时长-标清SD,单位:秒。
*/
public void setVideoTimeSd(Long VideoTimeSd) {
this.VideoTimeSd = VideoTimeSd;
}
/**
* Get 视频时长-高清HD,单位:秒。
* @return VideoTimeHd 视频时长-高清HD,单位:秒。
*/
public Long getVideoTimeHd() {
return this.VideoTimeHd;
}
/**
* Set 视频时长-高清HD,单位:秒。
* @param VideoTimeHd 视频时长-高清HD,单位:秒。
*/
public void setVideoTimeHd(Long VideoTimeHd) {
this.VideoTimeHd = VideoTimeHd;
}
/**
* Get 视频时长-超清HD,单位:秒。
* @return VideoTimeHdp 视频时长-超清HD,单位:秒。
*/
public Long getVideoTimeHdp() {
return this.VideoTimeHdp;
}
/**
* Set 视频时长-超清HD,单位:秒。
* @param VideoTimeHdp 视频时长-超清HD,单位:秒。
*/
public void setVideoTimeHdp(Long VideoTimeHdp) {
this.VideoTimeHdp = VideoTimeHdp;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "TimeKey", this.TimeKey);
this.setParamSimple(map, prefix + "AudioTime", this.AudioTime);
this.setParamSimple(map, prefix + "AudioVideoTime", this.AudioVideoTime);
this.setParamSimple(map, prefix + "VideoTimeSd", this.VideoTimeSd);
this.setParamSimple(map, prefix + "VideoTimeHd", this.VideoTimeHd);
this.setParamSimple(map, prefix + "VideoTimeHdp", this.VideoTimeHdp);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy