/* * 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.Ocr.V20181119.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class ResidenceBookletOCRResponse : AbstractModel { /// /// 户号 /// [JsonProperty("HouseholdNumber")] public string HouseholdNumber{ get; set; } /// /// 姓名 /// [JsonProperty("Name")] public string Name{ get; set; } /// /// 性别 /// [JsonProperty("Sex")] public string Sex{ get; set; } /// /// 出生地 /// [JsonProperty("BirthPlace")] public string BirthPlace{ get; set; } /// /// 民族 /// [JsonProperty("Nation")] public string Nation{ get; set; } /// /// 籍贯 /// [JsonProperty("NativePlace")] public string NativePlace{ get; set; } /// /// 出生日期 /// [JsonProperty("BirthDate")] public string BirthDate{ get; set; } /// /// 公民身份证件编号 /// [JsonProperty("IdCardNumber")] public string IdCardNumber{ get; set; } /// /// 文化程度 /// [JsonProperty("EducationDegree")] public string EducationDegree{ get; set; } /// /// 服务处所 /// [JsonProperty("ServicePlace")] public string ServicePlace{ get; set; } /// /// 户别 /// [JsonProperty("Household")] public string Household{ get; set; } /// /// 住址 /// [JsonProperty("Address")] public string Address{ get; set; } /// /// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 /// [JsonProperty("RequestId")] public string RequestId{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "HouseholdNumber", this.HouseholdNumber); this.SetParamSimple(map, prefix + "Name", this.Name); this.SetParamSimple(map, prefix + "Sex", this.Sex); this.SetParamSimple(map, prefix + "BirthPlace", this.BirthPlace); this.SetParamSimple(map, prefix + "Nation", this.Nation); this.SetParamSimple(map, prefix + "NativePlace", this.NativePlace); this.SetParamSimple(map, prefix + "BirthDate", this.BirthDate); this.SetParamSimple(map, prefix + "IdCardNumber", this.IdCardNumber); this.SetParamSimple(map, prefix + "EducationDegree", this.EducationDegree); this.SetParamSimple(map, prefix + "ServicePlace", this.ServicePlace); this.SetParamSimple(map, prefix + "Household", this.Household); this.SetParamSimple(map, prefix + "Address", this.Address); this.SetParamSimple(map, prefix + "RequestId", this.RequestId); } } }