All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkokr_1_0.models.UpdateObjectiveResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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