/*
* Copyright (c) 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.
*/
namespace TencentCloud.Solar.V20181011.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeCustomersRequest : AbstractModel
{
///
/// 查询类型,0.个人,1负责部门,2.指定部门
///
[JsonProperty("QueryType")]
public string QueryType{ get; set; }
///
/// 分组ID
///
[JsonProperty("GroupId")]
public string GroupId{ get; set; }
///
/// 是否星级标记 1是 0否
///
[JsonProperty("MarkFlag")]
public long? MarkFlag{ get; set; }
///
/// 客户标签,多个标签用逗号隔开
///
[JsonProperty("TagIds")]
public string TagIds{ get; set; }
///
/// 员工标识筛选,0:非员工,1:员工
///
[JsonProperty("RelChannelFlag")]
public string RelChannelFlag{ get; set; }
///
/// 必须存在手机 1是 0否
///
[JsonProperty("NeedPhoneFlag")]
public long? NeedPhoneFlag{ get; set; }
///
/// 省份
///
[JsonProperty("Province")]
public string Province{ get; set; }
///
/// 城市
///
[JsonProperty("City")]
public string City{ get; set; }
///
/// 性别 1男 2女
///
[JsonProperty("Sex")]
public string Sex{ get; set; }
///
/// 城市
///
[JsonProperty("KeyWord")]
public string KeyWord{ get; set; }
///
/// 查询开始位置
///
[JsonProperty("Offset")]
public ulong? Offset{ get; set; }
///
/// 每页记录条数
///
[JsonProperty("Limit")]
public ulong? Limit{ get; set; }
///
/// 子项目ID
///
[JsonProperty("SubProjectId")]
public string SubProjectId{ get; set; }
///
/// For internal usage only. DO NOT USE IT.
///
internal override void ToMap(Dictionary map, string prefix)
{
this.SetParamSimple(map, prefix + "QueryType", this.QueryType);
this.SetParamSimple(map, prefix + "GroupId", this.GroupId);
this.SetParamSimple(map, prefix + "MarkFlag", this.MarkFlag);
this.SetParamSimple(map, prefix + "TagIds", this.TagIds);
this.SetParamSimple(map, prefix + "RelChannelFlag", this.RelChannelFlag);
this.SetParamSimple(map, prefix + "NeedPhoneFlag", this.NeedPhoneFlag);
this.SetParamSimple(map, prefix + "Province", this.Province);
this.SetParamSimple(map, prefix + "City", this.City);
this.SetParamSimple(map, prefix + "Sex", this.Sex);
this.SetParamSimple(map, prefix + "KeyWord", this.KeyWord);
this.SetParamSimple(map, prefix + "Offset", this.Offset);
this.SetParamSimple(map, prefix + "Limit", this.Limit);
this.SetParamSimple(map, prefix + "SubProjectId", this.SubProjectId);
}
}
}