com.aliyun.dingtalkokr_1_0.models.AlignObjectiveResponseBody 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.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class AlignObjectiveResponseBody extends TeaModel {
@NameInMap("data")
public AlignObjectiveResponseBodyData data;
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static AlignObjectiveResponseBody build(java.util.Map map) throws Exception {
AlignObjectiveResponseBody self = new AlignObjectiveResponseBody();
return TeaModel.build(map, self);
}
public AlignObjectiveResponseBody setData(AlignObjectiveResponseBodyData data) {
this.data = data;
return this;
}
public AlignObjectiveResponseBodyData getData() {
return this.data;
}
public AlignObjectiveResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class AlignObjectiveResponseBodyData extends TeaModel {
/**
* example:
* 59YD
*/
@NameInMap("alignId")
public java.io.InputStream alignId;
/**
* example:
* 5dAX8
*/
@NameInMap("id")
public java.io.InputStream id;
public static AlignObjectiveResponseBodyData build(java.util.Map map) throws Exception {
AlignObjectiveResponseBodyData self = new AlignObjectiveResponseBodyData();
return TeaModel.build(map, self);
}
public AlignObjectiveResponseBodyData setAlignId(java.io.InputStream alignId) {
this.alignId = alignId;
return this;
}
public java.io.InputStream getAlignId() {
return this.alignId;
}
public AlignObjectiveResponseBodyData setId(java.io.InputStream id) {
this.id = id;
return this;
}
public java.io.InputStream getId() {
return this.id;
}
}
}