![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkwatt_1_0.models.GetPointInfoResponseBody 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.dingtalkwatt_1_0.models;
import com.aliyun.tea.*;
public class GetPointInfoResponseBody extends TeaModel {
@NameInMap("result")
public GetPointInfoResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static GetPointInfoResponseBody build(java.util.Map map) throws Exception {
GetPointInfoResponseBody self = new GetPointInfoResponseBody();
return TeaModel.build(map, self);
}
public GetPointInfoResponseBody setResult(GetPointInfoResponseBodyResult result) {
this.result = result;
return this;
}
public GetPointInfoResponseBodyResult getResult() {
return this.result;
}
public GetPointInfoResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetPointInfoResponseBodyResult extends TeaModel {
@NameInMap("userPoints")
public Long userPoints;
public static GetPointInfoResponseBodyResult build(java.util.Map map) throws Exception {
GetPointInfoResponseBodyResult self = new GetPointInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public GetPointInfoResponseBodyResult setUserPoints(Long userPoints) {
this.userPoints = userPoints;
return this;
}
public Long getUserPoints() {
return this.userPoints;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy