com.tencentcloudapi.essbasic.v20210526.models.ChannelRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-essbasic Show documentation
Show all versions of tencentcloud-sdk-java-essbasic Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
package com.tencentcloudapi.essbasic.v20210526.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ChannelRole extends AbstractModel {
/**
* 角色ID,为32位字符串
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("RoleId")
@Expose
private String RoleId;
/**
* 角色的名称
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("RoleName")
@Expose
private String RoleName;
/**
* 此角色状态
1: 已经启用
2: 已经禁用
*/
@SerializedName("RoleStatus")
@Expose
private Long RoleStatus;
/**
* 此角色对应的权限列表
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("PermissionGroups")
@Expose
private PermissionGroup [] PermissionGroups;
/**
* Get 角色ID,为32位字符串
注意:此字段可能返回 null,表示取不到有效值。
* @return RoleId 角色ID,为32位字符串
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getRoleId() {
return this.RoleId;
}
/**
* Set 角色ID,为32位字符串
注意:此字段可能返回 null,表示取不到有效值。
* @param RoleId 角色ID,为32位字符串
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setRoleId(String RoleId) {
this.RoleId = RoleId;
}
/**
* Get 角色的名称
注意:此字段可能返回 null,表示取不到有效值。
* @return RoleName 角色的名称
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getRoleName() {
return this.RoleName;
}
/**
* Set 角色的名称
注意:此字段可能返回 null,表示取不到有效值。
* @param RoleName 角色的名称
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setRoleName(String RoleName) {
this.RoleName = RoleName;
}
/**
* Get 此角色状态
1: 已经启用
2: 已经禁用
* @return RoleStatus 此角色状态
1: 已经启用
2: 已经禁用
*/
public Long getRoleStatus() {
return this.RoleStatus;
}
/**
* Set 此角色状态
1: 已经启用
2: 已经禁用
* @param RoleStatus 此角色状态
1: 已经启用
2: 已经禁用
*/
public void setRoleStatus(Long RoleStatus) {
this.RoleStatus = RoleStatus;
}
/**
* Get 此角色对应的权限列表
注意:此字段可能返回 null,表示取不到有效值。
* @return PermissionGroups 此角色对应的权限列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public PermissionGroup [] getPermissionGroups() {
return this.PermissionGroups;
}
/**
* Set 此角色对应的权限列表
注意:此字段可能返回 null,表示取不到有效值。
* @param PermissionGroups 此角色对应的权限列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setPermissionGroups(PermissionGroup [] PermissionGroups) {
this.PermissionGroups = PermissionGroups;
}
public ChannelRole() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ChannelRole(ChannelRole source) {
if (source.RoleId != null) {
this.RoleId = new String(source.RoleId);
}
if (source.RoleName != null) {
this.RoleName = new String(source.RoleName);
}
if (source.RoleStatus != null) {
this.RoleStatus = new Long(source.RoleStatus);
}
if (source.PermissionGroups != null) {
this.PermissionGroups = new PermissionGroup[source.PermissionGroups.length];
for (int i = 0; i < source.PermissionGroups.length; i++) {
this.PermissionGroups[i] = new PermissionGroup(source.PermissionGroups[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "RoleId", this.RoleId);
this.setParamSimple(map, prefix + "RoleName", this.RoleName);
this.setParamSimple(map, prefix + "RoleStatus", this.RoleStatus);
this.setParamArrayObj(map, prefix + "PermissionGroups.", this.PermissionGroups);
}
}