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

com.aliyun.dingtalkim_1_0.models.UpdateGroupNameRequest 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 UpdateGroupNameRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("groupName") public String groupName; /** *

This parameter is required.

*/ @NameInMap("openConversationId") public String openConversationId; public static UpdateGroupNameRequest build(java.util.Map map) throws Exception { UpdateGroupNameRequest self = new UpdateGroupNameRequest(); return TeaModel.build(map, self); } public UpdateGroupNameRequest setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public UpdateGroupNameRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy