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

com.aliyun.dingtalkim_1_0.models.ChangeGroupOwnerRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy