com.aliyun.dingtalkhrm_1_0.models.HrmPtsServiceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class HrmPtsServiceResponseBody extends TeaModel {
@NameInMap("bizSuccess")
public Boolean bizSuccess;
@NameInMap("errorCode")
public String errorCode;
@NameInMap("errorMsg")
public String errorMsg;
@NameInMap("result")
public java.util.Map result;
public static HrmPtsServiceResponseBody build(java.util.Map map) throws Exception {
HrmPtsServiceResponseBody self = new HrmPtsServiceResponseBody();
return TeaModel.build(map, self);
}
public HrmPtsServiceResponseBody setBizSuccess(Boolean bizSuccess) {
this.bizSuccess = bizSuccess;
return this;
}
public Boolean getBizSuccess() {
return this.bizSuccess;
}
public HrmPtsServiceResponseBody setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public HrmPtsServiceResponseBody setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
public String getErrorMsg() {
return this.errorMsg;
}
public HrmPtsServiceResponseBody setResult(java.util.Map result) {
this.result = result;
return this;
}
public java.util.Map getResult() {
return this.result;
}
}