com.aliyun.ccc20200701.models.AddUsersToSkillGroupResponseBody 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 AddUsersToSkillGroupResponseBody extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
public static AddUsersToSkillGroupResponseBody build(java.util.Map map) throws Exception {
AddUsersToSkillGroupResponseBody self = new AddUsersToSkillGroupResponseBody();
return TeaModel.build(map, self);
}
public AddUsersToSkillGroupResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public AddUsersToSkillGroupResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public AddUsersToSkillGroupResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public AddUsersToSkillGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}