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

com.aliyun.dingtalkproject_1_0.models.UpdateTaskNoteRequest 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 UpdateTaskNoteRequest extends TeaModel {
    /**
     * example:
     * 

更改后的备注

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy