com.tencentcloudapi.organization.v20181225.models.GetOrganizationMemberResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-organization Show documentation
Show all versions of tencentcloud-sdk-java-organization Show documentation
Tencent Cloud Open API SDK for Java
The newest version!
/*
* 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.organization.v20181225.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 GetOrganizationMemberResponse extends AbstractModel {
/**
* 组织成员UIN
*/
@SerializedName("Uin")
@Expose
private Long Uin;
/**
* 组织成员名称
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 备注
*/
@SerializedName("Remark")
@Expose
private String Remark;
/**
* 加入时间
*/
@SerializedName("JoinTime")
@Expose
private String JoinTime;
/**
* 组织单元ID
*/
@SerializedName("NodeId")
@Expose
private Long NodeId;
/**
* 组织单元名称
*/
@SerializedName("NodeName")
@Expose
private String NodeName;
/**
* 父组织单元ID
*/
@SerializedName("ParentNodeId")
@Expose
private Long ParentNodeId;
/**
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get 组织成员UIN
* @return Uin 组织成员UIN
*/
public Long getUin() {
return this.Uin;
}
/**
* Set 组织成员UIN
* @param Uin 组织成员UIN
*/
public void setUin(Long Uin) {
this.Uin = Uin;
}
/**
* Get 组织成员名称
* @return Name 组织成员名称
*/
public String getName() {
return this.Name;
}
/**
* Set 组织成员名称
* @param Name 组织成员名称
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 备注
* @return Remark 备注
*/
public String getRemark() {
return this.Remark;
}
/**
* Set 备注
* @param Remark 备注
*/
public void setRemark(String Remark) {
this.Remark = Remark;
}
/**
* Get 加入时间
* @return JoinTime 加入时间
*/
public String getJoinTime() {
return this.JoinTime;
}
/**
* Set 加入时间
* @param JoinTime 加入时间
*/
public void setJoinTime(String JoinTime) {
this.JoinTime = JoinTime;
}
/**
* Get 组织单元ID
* @return NodeId 组织单元ID
*/
public Long getNodeId() {
return this.NodeId;
}
/**
* Set 组织单元ID
* @param NodeId 组织单元ID
*/
public void setNodeId(Long NodeId) {
this.NodeId = NodeId;
}
/**
* Get 组织单元名称
* @return NodeName 组织单元名称
*/
public String getNodeName() {
return this.NodeName;
}
/**
* Set 组织单元名称
* @param NodeName 组织单元名称
*/
public void setNodeName(String NodeName) {
this.NodeName = NodeName;
}
/**
* Get 父组织单元ID
* @return ParentNodeId 父组织单元ID
*/
public Long getParentNodeId() {
return this.ParentNodeId;
}
/**
* Set 父组织单元ID
* @param ParentNodeId 父组织单元ID
*/
public void setParentNodeId(Long ParentNodeId) {
this.ParentNodeId = ParentNodeId;
}
/**
* Get 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
* @return RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
* @param RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public GetOrganizationMemberResponse() {
}
/**
* 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 GetOrganizationMemberResponse(GetOrganizationMemberResponse source) {
if (source.Uin != null) {
this.Uin = new Long(source.Uin);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.Remark != null) {
this.Remark = new String(source.Remark);
}
if (source.JoinTime != null) {
this.JoinTime = new String(source.JoinTime);
}
if (source.NodeId != null) {
this.NodeId = new Long(source.NodeId);
}
if (source.NodeName != null) {
this.NodeName = new String(source.NodeName);
}
if (source.ParentNodeId != null) {
this.ParentNodeId = new Long(source.ParentNodeId);
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Uin", this.Uin);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "Remark", this.Remark);
this.setParamSimple(map, prefix + "JoinTime", this.JoinTime);
this.setParamSimple(map, prefix + "NodeId", this.NodeId);
this.setParamSimple(map, prefix + "NodeName", this.NodeName);
this.setParamSimple(map, prefix + "ParentNodeId", this.ParentNodeId);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy