com.aliyun.ccc20200701.models.CreateSkillGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccc20200701 Show documentation
Show all versions of ccc20200701 Show documentation
Alibaba Cloud cloud call center (20200701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;
import com.aliyun.tea.*;
public class CreateSkillGroupRequest extends TeaModel {
@NameInMap("Description")
public String description;
/**
* This parameter is required.
*/
@NameInMap("DisplayName")
public String displayName;
/**
* This parameter is required.
*
* example:
* ccc-test
*/
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("MediaType")
public String mediaType;
/**
* This parameter is required.
*
* example:
* skillgroup
*/
@NameInMap("Name")
public String name;
public static CreateSkillGroupRequest build(java.util.Map map) throws Exception {
CreateSkillGroupRequest self = new CreateSkillGroupRequest();
return TeaModel.build(map, self);
}
public CreateSkillGroupRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateSkillGroupRequest setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public CreateSkillGroupRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public CreateSkillGroupRequest setMediaType(String mediaType) {
this.mediaType = mediaType;
return this;
}
public String getMediaType() {
return this.mediaType;
}
public CreateSkillGroupRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}