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

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

There is a newer version: 2.1.67
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 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy