
com.tencentcloudapi.partners.v20180321.models.AgentClientElem 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.partners.v20180321.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class AgentClientElem extends AbstractModel{
/**
* 代理商账号ID
*/
@SerializedName("Uin")
@Expose
private String Uin;
/**
* 代客账号ID
*/
@SerializedName("ClientUin")
@Expose
private String ClientUin;
/**
* 代客申请时间戳
*/
@SerializedName("ApplyTime")
@Expose
private Long ApplyTime;
/**
* 代客类型,可能值为a/b/c
*/
@SerializedName("ClientFlag")
@Expose
private String ClientFlag;
/**
* 代客邮箱,打码显示
*/
@SerializedName("Mail")
@Expose
private String Mail;
/**
* 代客手机,打码显示
*/
@SerializedName("Phone")
@Expose
private String Phone;
/**
* 0表示不欠费,1表示欠费
*/
@SerializedName("HasOverdueBill")
@Expose
private Long HasOverdueBill;
/**
* 1:待代理商审核;2:待腾讯云审核
*/
@SerializedName("Status")
@Expose
private Long Status;
/**
* 业务员ID
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("SalesUin")
@Expose
private String SalesUin;
/**
* 业务员姓名
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("SalesName")
@Expose
private String SalesName;
/**
* Get 代理商账号ID
* @return Uin 代理商账号ID
*/
public String getUin() {
return this.Uin;
}
/**
* Set 代理商账号ID
* @param Uin 代理商账号ID
*/
public void setUin(String Uin) {
this.Uin = Uin;
}
/**
* Get 代客账号ID
* @return ClientUin 代客账号ID
*/
public String getClientUin() {
return this.ClientUin;
}
/**
* Set 代客账号ID
* @param ClientUin 代客账号ID
*/
public void setClientUin(String ClientUin) {
this.ClientUin = ClientUin;
}
/**
* Get 代客申请时间戳
* @return ApplyTime 代客申请时间戳
*/
public Long getApplyTime() {
return this.ApplyTime;
}
/**
* Set 代客申请时间戳
* @param ApplyTime 代客申请时间戳
*/
public void setApplyTime(Long ApplyTime) {
this.ApplyTime = ApplyTime;
}
/**
* Get 代客类型,可能值为a/b/c
* @return ClientFlag 代客类型,可能值为a/b/c
*/
public String getClientFlag() {
return this.ClientFlag;
}
/**
* Set 代客类型,可能值为a/b/c
* @param ClientFlag 代客类型,可能值为a/b/c
*/
public void setClientFlag(String ClientFlag) {
this.ClientFlag = ClientFlag;
}
/**
* Get 代客邮箱,打码显示
* @return Mail 代客邮箱,打码显示
*/
public String getMail() {
return this.Mail;
}
/**
* Set 代客邮箱,打码显示
* @param Mail 代客邮箱,打码显示
*/
public void setMail(String Mail) {
this.Mail = Mail;
}
/**
* Get 代客手机,打码显示
* @return Phone 代客手机,打码显示
*/
public String getPhone() {
return this.Phone;
}
/**
* Set 代客手机,打码显示
* @param Phone 代客手机,打码显示
*/
public void setPhone(String Phone) {
this.Phone = Phone;
}
/**
* Get 0表示不欠费,1表示欠费
* @return HasOverdueBill 0表示不欠费,1表示欠费
*/
public Long getHasOverdueBill() {
return this.HasOverdueBill;
}
/**
* Set 0表示不欠费,1表示欠费
* @param HasOverdueBill 0表示不欠费,1表示欠费
*/
public void setHasOverdueBill(Long HasOverdueBill) {
this.HasOverdueBill = HasOverdueBill;
}
/**
* Get 1:待代理商审核;2:待腾讯云审核
* @return Status 1:待代理商审核;2:待腾讯云审核
*/
public Long getStatus() {
return this.Status;
}
/**
* Set 1:待代理商审核;2:待腾讯云审核
* @param Status 1:待代理商审核;2:待腾讯云审核
*/
public void setStatus(Long Status) {
this.Status = Status;
}
/**
* Get 业务员ID
注意:此字段可能返回 null,表示取不到有效值。
* @return SalesUin 业务员ID
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getSalesUin() {
return this.SalesUin;
}
/**
* Set 业务员ID
注意:此字段可能返回 null,表示取不到有效值。
* @param SalesUin 业务员ID
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setSalesUin(String SalesUin) {
this.SalesUin = SalesUin;
}
/**
* Get 业务员姓名
注意:此字段可能返回 null,表示取不到有效值。
* @return SalesName 业务员姓名
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getSalesName() {
return this.SalesName;
}
/**
* Set 业务员姓名
注意:此字段可能返回 null,表示取不到有效值。
* @param SalesName 业务员姓名
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setSalesName(String SalesName) {
this.SalesName = SalesName;
}
/**
* 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 + "ClientUin", this.ClientUin);
this.setParamSimple(map, prefix + "ApplyTime", this.ApplyTime);
this.setParamSimple(map, prefix + "ClientFlag", this.ClientFlag);
this.setParamSimple(map, prefix + "Mail", this.Mail);
this.setParamSimple(map, prefix + "Phone", this.Phone);
this.setParamSimple(map, prefix + "HasOverdueBill", this.HasOverdueBill);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "SalesUin", this.SalesUin);
this.setParamSimple(map, prefix + "SalesName", this.SalesName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy