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

com.aliyun.dingtalkimpaas_1_0.models.UpdateGroupOwnerRequest Maven / Gradle / Ivy

The newest version!
// 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 - 2024 Weber Informatics LLC | Privacy Policy