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

com.aliyun.pds20220301.models.DeleteGroupRequest Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;

import com.aliyun.tea.*;

public class DeleteGroupRequest extends TeaModel {
    /**
     * 

The group ID.

*

This parameter is required.

* * example: *

g123

*/ @NameInMap("group_id") public String groupId; public static DeleteGroupRequest build(java.util.Map map) throws Exception { DeleteGroupRequest self = new DeleteGroupRequest(); return TeaModel.build(map, self); } public DeleteGroupRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy