com.aliyun.dingtalkimpaas_1_0.models.UpdateGroupNameRequest 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class UpdateGroupNameRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("conversationId")
public String conversationId;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
@NameInMap("operatorUid")
public String operatorUid;
public static UpdateGroupNameRequest build(java.util.Map map) throws Exception {
UpdateGroupNameRequest self = new UpdateGroupNameRequest();
return TeaModel.build(map, self);
}
public UpdateGroupNameRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public UpdateGroupNameRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateGroupNameRequest setOperatorUid(String operatorUid) {
this.operatorUid = operatorUid;
return this;
}
public String getOperatorUid() {
return this.operatorUid;
}
}