![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkokr_1_0.models.UpdateObjectiveResponseBody 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 UpdateObjectiveResponseBody extends TeaModel {
@NameInMap("data")
public UpdateObjectiveResponseBodyData data;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static UpdateObjectiveResponseBody build(java.util.Map map) throws Exception {
UpdateObjectiveResponseBody self = new UpdateObjectiveResponseBody();
return TeaModel.build(map, self);
}
public UpdateObjectiveResponseBody setData(UpdateObjectiveResponseBodyData data) {
this.data = data;
return this;
}
public UpdateObjectiveResponseBodyData getData() {
return this.data;
}
public UpdateObjectiveResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class UpdateObjectiveResponseBodyData extends TeaModel {
/**
* This parameter is required.
*
* example:
* 58YD
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*
* example:
* 33453
*/
@NameInMap("position")
public Float position;
public static UpdateObjectiveResponseBodyData build(java.util.Map map) throws Exception {
UpdateObjectiveResponseBodyData self = new UpdateObjectiveResponseBodyData();
return TeaModel.build(map, self);
}
public UpdateObjectiveResponseBodyData setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public UpdateObjectiveResponseBodyData setPosition(Float position) {
this.position = position;
return this;
}
public Float getPosition() {
return this.position;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy