
com.aliyun.dingtalkedu_1_0.models.GetPointInfoResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_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("availableQuota")
public Long availableQuota;
@NameInMap("endTime")
public String endTime;
@NameInMap("startTime")
public String startTime;
public static GetPointInfoResponseBodyResult build(java.util.Map map) throws Exception {
GetPointInfoResponseBodyResult self = new GetPointInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public GetPointInfoResponseBodyResult setAvailableQuota(Long availableQuota) {
this.availableQuota = availableQuota;
return this;
}
public Long getAvailableQuota() {
return this.availableQuota;
}
public GetPointInfoResponseBodyResult setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetPointInfoResponseBodyResult setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy