
com.aliyun.ims20190815.models.UpdateGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ims20190815 Show documentation
Show all versions of ims20190815 Show documentation
Alibaba Cloud Ims (20190815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ims20190815.models;
import com.aliyun.tea.*;
public class UpdateGroupResponseBody extends TeaModel {
/**
* The information of the RAM user group.
*/
@NameInMap("Group")
public UpdateGroupResponseBodyGroup group;
/**
* The ID of the request.
*
* example:
* CDA656E3-3CE9-4A03-A8A3-B42A0C3C3287
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateGroupResponseBody build(java.util.Map map) throws Exception {
UpdateGroupResponseBody self = new UpdateGroupResponseBody();
return TeaModel.build(map, self);
}
public UpdateGroupResponseBody setGroup(UpdateGroupResponseBodyGroup group) {
this.group = group;
return this;
}
public UpdateGroupResponseBodyGroup getGroup() {
return this.group;
}
public UpdateGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class UpdateGroupResponseBodyGroup extends TeaModel {
/**
* The description.
*
* example:
* Test-Team
*/
@NameInMap("Comments")
public String comments;
/**
* The creation time.
*
* example:
* 2020-10-19T16:15:17Z
*/
@NameInMap("CreateDate")
public String createDate;
/**
* The display name of the RAM user group.
*
* example:
* Test-Team
*/
@NameInMap("DisplayName")
public String displayName;
/**
* The ID of the RAM user group.
*
* example:
* 740317625433843****
*/
@NameInMap("GroupId")
public String groupId;
/**
* The name of the RAM user group.
*
* example:
* Test-Team
*/
@NameInMap("GroupName")
public String groupName;
/**
* The update time.
*
* example:
* 2020-10-20T03:44:27Z
*/
@NameInMap("UpdateDate")
public String updateDate;
public static UpdateGroupResponseBodyGroup build(java.util.Map map) throws Exception {
UpdateGroupResponseBodyGroup self = new UpdateGroupResponseBodyGroup();
return TeaModel.build(map, self);
}
public UpdateGroupResponseBodyGroup setComments(String comments) {
this.comments = comments;
return this;
}
public String getComments() {
return this.comments;
}
public UpdateGroupResponseBodyGroup setCreateDate(String createDate) {
this.createDate = createDate;
return this;
}
public String getCreateDate() {
return this.createDate;
}
public UpdateGroupResponseBodyGroup setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public UpdateGroupResponseBodyGroup setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public UpdateGroupResponseBodyGroup setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public UpdateGroupResponseBodyGroup setUpdateDate(String updateDate) {
this.updateDate = updateDate;
return this;
}
public String getUpdateDate() {
return this.updateDate;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy