
com.tencentcloudapi.ccc.v20200210.models.DescribePredictiveDialingCampaignsRequest 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.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 DescribePredictiveDialingCampaignsRequest extends AbstractModel {
/**
* 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
*/
@SerializedName("SdkAppId")
@Expose
private Long SdkAppId;
/**
* 分页尺寸,最大为 100
*/
@SerializedName("PageSize")
@Expose
private Long PageSize;
/**
* 分页页码,从 0 开始
*/
@SerializedName("PageNumber")
@Expose
private Long PageNumber;
/**
* 查询任务列表名称关键字
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 查询任务列表技能组 ID
*/
@SerializedName("SkillGroupId")
@Expose
private Long SkillGroupId;
/**
* Get 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
* @return SdkAppId 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
*/
public Long getSdkAppId() {
return this.SdkAppId;
}
/**
* Set 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
* @param SdkAppId 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
*/
public void setSdkAppId(Long SdkAppId) {
this.SdkAppId = SdkAppId;
}
/**
* Get 分页尺寸,最大为 100
* @return PageSize 分页尺寸,最大为 100
*/
public Long getPageSize() {
return this.PageSize;
}
/**
* Set 分页尺寸,最大为 100
* @param PageSize 分页尺寸,最大为 100
*/
public void setPageSize(Long PageSize) {
this.PageSize = PageSize;
}
/**
* Get 分页页码,从 0 开始
* @return PageNumber 分页页码,从 0 开始
*/
public Long getPageNumber() {
return this.PageNumber;
}
/**
* Set 分页页码,从 0 开始
* @param PageNumber 分页页码,从 0 开始
*/
public void setPageNumber(Long PageNumber) {
this.PageNumber = PageNumber;
}
/**
* Get 查询任务列表名称关键字
* @return Name 查询任务列表名称关键字
*/
public String getName() {
return this.Name;
}
/**
* Set 查询任务列表名称关键字
* @param Name 查询任务列表名称关键字
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 查询任务列表技能组 ID
* @return SkillGroupId 查询任务列表技能组 ID
*/
public Long getSkillGroupId() {
return this.SkillGroupId;
}
/**
* Set 查询任务列表技能组 ID
* @param SkillGroupId 查询任务列表技能组 ID
*/
public void setSkillGroupId(Long SkillGroupId) {
this.SkillGroupId = SkillGroupId;
}
public DescribePredictiveDialingCampaignsRequest() {
}
/**
* 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 DescribePredictiveDialingCampaignsRequest(DescribePredictiveDialingCampaignsRequest source) {
if (source.SdkAppId != null) {
this.SdkAppId = new Long(source.SdkAppId);
}
if (source.PageSize != null) {
this.PageSize = new Long(source.PageSize);
}
if (source.PageNumber != null) {
this.PageNumber = new Long(source.PageNumber);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.SkillGroupId != null) {
this.SkillGroupId = new Long(source.SkillGroupId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "SdkAppId", this.SdkAppId);
this.setParamSimple(map, prefix + "PageSize", this.PageSize);
this.setParamSimple(map, prefix + "PageNumber", this.PageNumber);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "SkillGroupId", this.SkillGroupId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy