com.jdcloud.sdk.service.iam.model.CreateGroupRes Maven / Gradle / Ivy
/*
* Copyright 2018 JDCLOUD.COM
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http:#www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*
*
*
* Contact:
*
* NOTE: This class is auto generated by the jdcloud code generator program.
*/
package com.jdcloud.sdk.service.iam.model;
/**
* createGroupRes
*/
public class CreateGroupRes implements java.io.Serializable {
private static final long serialVersionUID = 1L;
/**
* 用户组ID
*/
private String groupId;
/**
* 用户组名
*/
private String name;
/**
* 京东云资源标识(jrn)
*/
private String jrn;
/**
* 用户组描述
*/
private String description;
/**
* 用户组创建时间
*/
private String createTime;
/**
* 用户组更新时间
*/
private String updateTime;
/**
* get 用户组ID
*
* @return
*/
public String getGroupId() {
return groupId;
}
/**
* set 用户组ID
*
* @param groupId
*/
public void setGroupId(String groupId) {
this.groupId = groupId;
}
/**
* get 用户组名
*
* @return
*/
public String getName() {
return name;
}
/**
* set 用户组名
*
* @param name
*/
public void setName(String name) {
this.name = name;
}
/**
* get 京东云资源标识(jrn)
*
* @return
*/
public String getJrn() {
return jrn;
}
/**
* set 京东云资源标识(jrn)
*
* @param jrn
*/
public void setJrn(String jrn) {
this.jrn = jrn;
}
/**
* get 用户组描述
*
* @return
*/
public String getDescription() {
return description;
}
/**
* set 用户组描述
*
* @param description
*/
public void setDescription(String description) {
this.description = description;
}
/**
* get 用户组创建时间
*
* @return
*/
public String getCreateTime() {
return createTime;
}
/**
* set 用户组创建时间
*
* @param createTime
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* get 用户组更新时间
*
* @return
*/
public String getUpdateTime() {
return updateTime;
}
/**
* set 用户组更新时间
*
* @param updateTime
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* set 用户组ID
*
* @param groupId
*/
public CreateGroupRes groupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* set 用户组名
*
* @param name
*/
public CreateGroupRes name(String name) {
this.name = name;
return this;
}
/**
* set 京东云资源标识(jrn)
*
* @param jrn
*/
public CreateGroupRes jrn(String jrn) {
this.jrn = jrn;
return this;
}
/**
* set 用户组描述
*
* @param description
*/
public CreateGroupRes description(String description) {
this.description = description;
return this;
}
/**
* set 用户组创建时间
*
* @param createTime
*/
public CreateGroupRes createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* set 用户组更新时间
*
* @param updateTime
*/
public CreateGroupRes updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
}