
com.tencentcloudapi.organization.v20210331.models.UpdateOrganizationMemberEmailBindRequest Maven / Gradle / Ivy
/*
* 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.v20210331.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 UpdateOrganizationMemberEmailBindRequest extends AbstractModel {
/**
* 成员Uin。
*/
@SerializedName("MemberUin")
@Expose
private Long MemberUin;
/**
* 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
*/
@SerializedName("BindId")
@Expose
private Long BindId;
/**
* 邮箱地址。
*/
@SerializedName("Email")
@Expose
private String Email;
/**
* 国际区号。
*/
@SerializedName("CountryCode")
@Expose
private String CountryCode;
/**
* 手机号。
*/
@SerializedName("Phone")
@Expose
private String Phone;
/**
* Get 成员Uin。
* @return MemberUin 成员Uin。
*/
public Long getMemberUin() {
return this.MemberUin;
}
/**
* Set 成员Uin。
* @param MemberUin 成员Uin。
*/
public void setMemberUin(Long MemberUin) {
this.MemberUin = MemberUin;
}
/**
* Get 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
* @return BindId 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
*/
public Long getBindId() {
return this.BindId;
}
/**
* Set 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
* @param BindId 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
*/
public void setBindId(Long BindId) {
this.BindId = BindId;
}
/**
* Get 邮箱地址。
* @return Email 邮箱地址。
*/
public String getEmail() {
return this.Email;
}
/**
* Set 邮箱地址。
* @param Email 邮箱地址。
*/
public void setEmail(String Email) {
this.Email = Email;
}
/**
* Get 国际区号。
* @return CountryCode 国际区号。
*/
public String getCountryCode() {
return this.CountryCode;
}
/**
* Set 国际区号。
* @param CountryCode 国际区号。
*/
public void setCountryCode(String CountryCode) {
this.CountryCode = CountryCode;
}
/**
* Get 手机号。
* @return Phone 手机号。
*/
public String getPhone() {
return this.Phone;
}
/**
* Set 手机号。
* @param Phone 手机号。
*/
public void setPhone(String Phone) {
this.Phone = Phone;
}
public UpdateOrganizationMemberEmailBindRequest() {
}
/**
* 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 UpdateOrganizationMemberEmailBindRequest(UpdateOrganizationMemberEmailBindRequest source) {
if (source.MemberUin != null) {
this.MemberUin = new Long(source.MemberUin);
}
if (source.BindId != null) {
this.BindId = new Long(source.BindId);
}
if (source.Email != null) {
this.Email = new String(source.Email);
}
if (source.CountryCode != null) {
this.CountryCode = new String(source.CountryCode);
}
if (source.Phone != null) {
this.Phone = new String(source.Phone);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "MemberUin", this.MemberUin);
this.setParamSimple(map, prefix + "BindId", this.BindId);
this.setParamSimple(map, prefix + "Email", this.Email);
this.setParamSimple(map, prefix + "CountryCode", this.CountryCode);
this.setParamSimple(map, prefix + "Phone", this.Phone);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy