
com.aliyun.dingtalkimpaas_1_0.models.UpdateGroupOwnerRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class UpdateGroupOwnerRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("conversationId")
public String conversationId;
@NameInMap("operatorUid")
public String operatorUid;
/**
* This parameter is required.
*/
@NameInMap("ownerUid")
public String ownerUid;
public static UpdateGroupOwnerRequest build(java.util.Map map) throws Exception {
UpdateGroupOwnerRequest self = new UpdateGroupOwnerRequest();
return TeaModel.build(map, self);
}
public UpdateGroupOwnerRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public UpdateGroupOwnerRequest setOperatorUid(String operatorUid) {
this.operatorUid = operatorUid;
return this;
}
public String getOperatorUid() {
return this.operatorUid;
}
public UpdateGroupOwnerRequest setOwnerUid(String ownerUid) {
this.ownerUid = ownerUid;
return this;
}
public String getOwnerUid() {
return this.ownerUid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy