![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.ccc.v20200210.models.DescribeSkillGroupInfoListRequest 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 DescribeSkillGroupInfoListRequest extends AbstractModel {
/**
* Application ID (required) can be found at https://console.cloud.tencent.com/ccc.
*/
@SerializedName("SdkAppId")
@Expose
private Long SdkAppId;
/**
* Page size, upper limit 100.
*/
@SerializedName("PageSize")
@Expose
private Long PageSize;
/**
* Page number starting from 0.
*/
@SerializedName("PageNumber")
@Expose
private Long PageNumber;
/**
* Using skill group ID when querying a single skill group.
*/
@SerializedName("SkillGroupId")
@Expose
private Long SkillGroupId;
/**
* Used when querying skill groups with a modified time greater or equal to ModifiedTime.
*/
@SerializedName("ModifiedTime")
@Expose
private Long ModifiedTime;
/**
* Skill group name.
*/
@SerializedName("SkillGroupName")
@Expose
private String SkillGroupName;
/**
* Get Application ID (required) can be found at https://console.cloud.tencent.com/ccc.
* @return SdkAppId Application ID (required) can be found at https://console.cloud.tencent.com/ccc.
*/
public Long getSdkAppId() {
return this.SdkAppId;
}
/**
* Set Application ID (required) can be found at https://console.cloud.tencent.com/ccc.
* @param SdkAppId Application ID (required) can be found at https://console.cloud.tencent.com/ccc.
*/
public void setSdkAppId(Long SdkAppId) {
this.SdkAppId = SdkAppId;
}
/**
* Get Page size, upper limit 100.
* @return PageSize Page size, upper limit 100.
*/
public Long getPageSize() {
return this.PageSize;
}
/**
* Set Page size, upper limit 100.
* @param PageSize Page size, upper limit 100.
*/
public void setPageSize(Long PageSize) {
this.PageSize = PageSize;
}
/**
* Get Page number starting from 0.
* @return PageNumber Page number starting from 0.
*/
public Long getPageNumber() {
return this.PageNumber;
}
/**
* Set Page number starting from 0.
* @param PageNumber Page number starting from 0.
*/
public void setPageNumber(Long PageNumber) {
this.PageNumber = PageNumber;
}
/**
* Get Using skill group ID when querying a single skill group.
* @return SkillGroupId Using skill group ID when querying a single skill group.
*/
public Long getSkillGroupId() {
return this.SkillGroupId;
}
/**
* Set Using skill group ID when querying a single skill group.
* @param SkillGroupId Using skill group ID when querying a single skill group.
*/
public void setSkillGroupId(Long SkillGroupId) {
this.SkillGroupId = SkillGroupId;
}
/**
* Get Used when querying skill groups with a modified time greater or equal to ModifiedTime.
* @return ModifiedTime Used when querying skill groups with a modified time greater or equal to ModifiedTime.
*/
public Long getModifiedTime() {
return this.ModifiedTime;
}
/**
* Set Used when querying skill groups with a modified time greater or equal to ModifiedTime.
* @param ModifiedTime Used when querying skill groups with a modified time greater or equal to ModifiedTime.
*/
public void setModifiedTime(Long ModifiedTime) {
this.ModifiedTime = ModifiedTime;
}
/**
* Get Skill group name.
* @return SkillGroupName Skill group name.
*/
public String getSkillGroupName() {
return this.SkillGroupName;
}
/**
* Set Skill group name.
* @param SkillGroupName Skill group name.
*/
public void setSkillGroupName(String SkillGroupName) {
this.SkillGroupName = SkillGroupName;
}
public DescribeSkillGroupInfoListRequest() {
}
/**
* 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 DescribeSkillGroupInfoListRequest(DescribeSkillGroupInfoListRequest 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.SkillGroupId != null) {
this.SkillGroupId = new Long(source.SkillGroupId);
}
if (source.ModifiedTime != null) {
this.ModifiedTime = new Long(source.ModifiedTime);
}
if (source.SkillGroupName != null) {
this.SkillGroupName = new String(source.SkillGroupName);
}
}
/**
* 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 + "SkillGroupId", this.SkillGroupId);
this.setParamSimple(map, prefix + "ModifiedTime", this.ModifiedTime);
this.setParamSimple(map, prefix + "SkillGroupName", this.SkillGroupName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy