
com.aliyun.dingtalkattendance_1_0.models.CheckClosingAccountResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class CheckClosingAccountResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*/
@NameInMap("mesage")
public String mesage;
/**
* This parameter is required.
*/
@NameInMap("pass")
public Boolean pass;
public static CheckClosingAccountResponseBody build(java.util.Map map) throws Exception {
CheckClosingAccountResponseBody self = new CheckClosingAccountResponseBody();
return TeaModel.build(map, self);
}
public CheckClosingAccountResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CheckClosingAccountResponseBody setMesage(String mesage) {
this.mesage = mesage;
return this;
}
public String getMesage() {
return this.mesage;
}
public CheckClosingAccountResponseBody setPass(Boolean pass) {
this.pass = pass;
return this;
}
public Boolean getPass() {
return this.pass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy