/* * 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.Youmall.V20180228.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class PersonVisitInfo : AbstractModel { /// /// 用户ID /// [JsonProperty("PersonId")] public ulong? PersonId{ get; set; } /// /// 用户到访ID /// [JsonProperty("VisitId")] public ulong? VisitId{ get; set; } /// /// 到访时间:Unix时间戳 /// [JsonProperty("InTime")] public ulong? InTime{ get; set; } /// /// 抓拍到的头像Base64内容,已弃用,返回默认空值 /// [JsonProperty("CapturedPicture")] public string CapturedPicture{ get; set; } /// /// 口罩类型:0不戴口罩,1戴口罩 /// [JsonProperty("MaskType")] public ulong? MaskType{ get; set; } /// /// 眼镜类型:0不戴眼镜,1普通眼镜 , 2墨镜 /// [JsonProperty("GlassType")] public ulong? GlassType{ get; set; } /// /// 发型:0 短发, 1长发 /// [JsonProperty("HairType")] public ulong? HairType{ get; set; } /// /// 抓拍到的头像Url,在有效期内可以访问下载 /// [JsonProperty("CapturedPictureUrl")] public string CapturedPictureUrl{ get; set; } /// /// 抓拍头像的场景图信息 /// [JsonProperty("SceneInfo")] public SceneInfo SceneInfo{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "PersonId", this.PersonId); this.SetParamSimple(map, prefix + "VisitId", this.VisitId); this.SetParamSimple(map, prefix + "InTime", this.InTime); this.SetParamSimple(map, prefix + "CapturedPicture", this.CapturedPicture); this.SetParamSimple(map, prefix + "MaskType", this.MaskType); this.SetParamSimple(map, prefix + "GlassType", this.GlassType); this.SetParamSimple(map, prefix + "HairType", this.HairType); this.SetParamSimple(map, prefix + "CapturedPictureUrl", this.CapturedPictureUrl); this.SetParamObj(map, prefix + "SceneInfo.", this.SceneInfo); } } }