![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.ccc.v20200210.models.DescribeTelCallInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.ccc.v20200210.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeTelCallInfoResponse extends AbstractModel {
/**
* Number of minutes consumed by Outbound Package.
*/
@SerializedName("TelCallOutCount")
@Expose
private Long TelCallOutCount;
/**
* Number of minutes consumed by Inbound Package.
*/
@SerializedName("TelCallInCount")
@Expose
private Long TelCallInCount;
/**
* Number of agent usage statistics.
*/
@SerializedName("SeatUsedCount")
@Expose
private Long SeatUsedCount;
/**
* Number of minutes consumed by Audio package.
*/
@SerializedName("VoipCallInCount")
@Expose
private Long VoipCallInCount;
/**
* Number of minutes consumed by Audio package.
*/
@SerializedName("VOIPCallInCount")
@Expose
private Long VOIPCallInCount;
/**
* Number of minutes consumed by Offline Speech-to-Text Package.
*/
@SerializedName("AsrOfflineCount")
@Expose
private Long AsrOfflineCount;
/**
* Number of minutes consumed by Real-time Speech-to-Text Package.
*/
@SerializedName("AsrRealtimeCount")
@Expose
private Long AsrRealtimeCount;
/**
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get Number of minutes consumed by Outbound Package.
* @return TelCallOutCount Number of minutes consumed by Outbound Package.
*/
public Long getTelCallOutCount() {
return this.TelCallOutCount;
}
/**
* Set Number of minutes consumed by Outbound Package.
* @param TelCallOutCount Number of minutes consumed by Outbound Package.
*/
public void setTelCallOutCount(Long TelCallOutCount) {
this.TelCallOutCount = TelCallOutCount;
}
/**
* Get Number of minutes consumed by Inbound Package.
* @return TelCallInCount Number of minutes consumed by Inbound Package.
*/
public Long getTelCallInCount() {
return this.TelCallInCount;
}
/**
* Set Number of minutes consumed by Inbound Package.
* @param TelCallInCount Number of minutes consumed by Inbound Package.
*/
public void setTelCallInCount(Long TelCallInCount) {
this.TelCallInCount = TelCallInCount;
}
/**
* Get Number of agent usage statistics.
* @return SeatUsedCount Number of agent usage statistics.
*/
public Long getSeatUsedCount() {
return this.SeatUsedCount;
}
/**
* Set Number of agent usage statistics.
* @param SeatUsedCount Number of agent usage statistics.
*/
public void setSeatUsedCount(Long SeatUsedCount) {
this.SeatUsedCount = SeatUsedCount;
}
/**
* Get Number of minutes consumed by Audio package.
* @return VoipCallInCount Number of minutes consumed by Audio package.
* @deprecated
*/
@Deprecated
public Long getVoipCallInCount() {
return this.VoipCallInCount;
}
/**
* Set Number of minutes consumed by Audio package.
* @param VoipCallInCount Number of minutes consumed by Audio package.
* @deprecated
*/
@Deprecated
public void setVoipCallInCount(Long VoipCallInCount) {
this.VoipCallInCount = VoipCallInCount;
}
/**
* Get Number of minutes consumed by Audio package.
* @return VOIPCallInCount Number of minutes consumed by Audio package.
*/
public Long getVOIPCallInCount() {
return this.VOIPCallInCount;
}
/**
* Set Number of minutes consumed by Audio package.
* @param VOIPCallInCount Number of minutes consumed by Audio package.
*/
public void setVOIPCallInCount(Long VOIPCallInCount) {
this.VOIPCallInCount = VOIPCallInCount;
}
/**
* Get Number of minutes consumed by Offline Speech-to-Text Package.
* @return AsrOfflineCount Number of minutes consumed by Offline Speech-to-Text Package.
*/
public Long getAsrOfflineCount() {
return this.AsrOfflineCount;
}
/**
* Set Number of minutes consumed by Offline Speech-to-Text Package.
* @param AsrOfflineCount Number of minutes consumed by Offline Speech-to-Text Package.
*/
public void setAsrOfflineCount(Long AsrOfflineCount) {
this.AsrOfflineCount = AsrOfflineCount;
}
/**
* Get Number of minutes consumed by Real-time Speech-to-Text Package.
* @return AsrRealtimeCount Number of minutes consumed by Real-time Speech-to-Text Package.
*/
public Long getAsrRealtimeCount() {
return this.AsrRealtimeCount;
}
/**
* Set Number of minutes consumed by Real-time Speech-to-Text Package.
* @param AsrRealtimeCount Number of minutes consumed by Real-time Speech-to-Text Package.
*/
public void setAsrRealtimeCount(Long AsrRealtimeCount) {
this.AsrRealtimeCount = AsrRealtimeCount;
}
/**
* Get The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
* @return RequestId The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
* @param RequestId The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeTelCallInfoResponse() {
}
/**
* 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 DescribeTelCallInfoResponse(DescribeTelCallInfoResponse source) {
if (source.TelCallOutCount != null) {
this.TelCallOutCount = new Long(source.TelCallOutCount);
}
if (source.TelCallInCount != null) {
this.TelCallInCount = new Long(source.TelCallInCount);
}
if (source.SeatUsedCount != null) {
this.SeatUsedCount = new Long(source.SeatUsedCount);
}
if (source.VoipCallInCount != null) {
this.VoipCallInCount = new Long(source.VoipCallInCount);
}
if (source.VOIPCallInCount != null) {
this.VOIPCallInCount = new Long(source.VOIPCallInCount);
}
if (source.AsrOfflineCount != null) {
this.AsrOfflineCount = new Long(source.AsrOfflineCount);
}
if (source.AsrRealtimeCount != null) {
this.AsrRealtimeCount = new Long(source.AsrRealtimeCount);
}
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 + "TelCallOutCount", this.TelCallOutCount);
this.setParamSimple(map, prefix + "TelCallInCount", this.TelCallInCount);
this.setParamSimple(map, prefix + "SeatUsedCount", this.SeatUsedCount);
this.setParamSimple(map, prefix + "VoipCallInCount", this.VoipCallInCount);
this.setParamSimple(map, prefix + "VOIPCallInCount", this.VOIPCallInCount);
this.setParamSimple(map, prefix + "AsrOfflineCount", this.AsrOfflineCount);
this.setParamSimple(map, prefix + "AsrRealtimeCount", this.AsrRealtimeCount);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy