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

com.aliyun.dingtalkproject_1_0.models.UpdateTaskNoteResponseBody 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.dingtalkproject_1_0.models;

import com.aliyun.tea.*;

public class UpdateTaskNoteResponseBody extends TeaModel {
    @NameInMap("result")
    public UpdateTaskNoteResponseBodyResult result;

    public static UpdateTaskNoteResponseBody build(java.util.Map map) throws Exception {
        UpdateTaskNoteResponseBody self = new UpdateTaskNoteResponseBody();
        return TeaModel.build(map, self);
    }

    public UpdateTaskNoteResponseBody setResult(UpdateTaskNoteResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public UpdateTaskNoteResponseBodyResult getResult() {
        return this.result;
    }

    public static class UpdateTaskNoteResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

更改后的备注

*/ @NameInMap("note") public String note; /** * example: *

2022-07-04T03:29:34.770Z

*/ @NameInMap("updated") public String updated; public static UpdateTaskNoteResponseBodyResult build(java.util.Map map) throws Exception { UpdateTaskNoteResponseBodyResult self = new UpdateTaskNoteResponseBodyResult(); return TeaModel.build(map, self); } public UpdateTaskNoteResponseBodyResult setNote(String note) { this.note = note; return this; } public String getNote() { return this.note; } public UpdateTaskNoteResponseBodyResult setUpdated(String updated) { this.updated = updated; return this; } public String getUpdated() { return this.updated; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy