com.aliyun.dingtalkokr_1_0.models.UpdateKROfContentRequest 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 UpdateKROfContentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 更新内容
*/
@NameInMap("content")
public String content;
@NameInMap("updateQuoteList")
public java.util.List updateQuoteList;
/**
* This parameter is required.
*
* example:
* 46GM2
*/
@NameInMap("krId")
public String krId;
/**
* This parameter is required.
*
* example:
* 0115396701752283
*/
@NameInMap("userId")
public String userId;
public static UpdateKROfContentRequest build(java.util.Map map) throws Exception {
UpdateKROfContentRequest self = new UpdateKROfContentRequest();
return TeaModel.build(map, self);
}
public UpdateKROfContentRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public UpdateKROfContentRequest setUpdateQuoteList(java.util.List updateQuoteList) {
this.updateQuoteList = updateQuoteList;
return this;
}
public java.util.List getUpdateQuoteList() {
return this.updateQuoteList;
}
public UpdateKROfContentRequest setKrId(String krId) {
this.krId = krId;
return this;
}
public String getKrId() {
return this.krId;
}
public UpdateKROfContentRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}