com.aliyun.dingtalkim_1_0.models.ChangeGroupOwnerRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class ChangeGroupOwnerRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 14da****2760
*/
@NameInMap("groupOwnerId")
public String groupOwnerId;
/**
* This parameter is required.
*
* example:
* 3
*/
@NameInMap("groupOwnerType")
public Integer groupOwnerType;
/**
* This parameter is required.
*
* example:
* 14da****2760
*/
@NameInMap("openConversationId")
public String openConversationId;
public static ChangeGroupOwnerRequest build(java.util.Map map) throws Exception {
ChangeGroupOwnerRequest self = new ChangeGroupOwnerRequest();
return TeaModel.build(map, self);
}
public ChangeGroupOwnerRequest setGroupOwnerId(String groupOwnerId) {
this.groupOwnerId = groupOwnerId;
return this;
}
public String getGroupOwnerId() {
return this.groupOwnerId;
}
public ChangeGroupOwnerRequest setGroupOwnerType(Integer groupOwnerType) {
this.groupOwnerType = groupOwnerType;
return this;
}
public Integer getGroupOwnerType() {
return this.groupOwnerType;
}
public ChangeGroupOwnerRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
}