/* * 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 TextVehicleFront : AbstractModel { /// /// 号牌号码 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PlateNo")] public string PlateNo{ get; set; } /// /// 车辆类型 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("VehicleType")] public string VehicleType{ get; set; } /// /// 所有人 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Owner")] public string Owner{ get; set; } /// /// 住址 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Address")] public string Address{ get; set; } /// /// 使用性质 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("UseCharacter")] public string UseCharacter{ get; set; } /// /// 品牌型号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Model")] public string Model{ get; set; } /// /// 车辆识别代号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Vin")] public string Vin{ get; set; } /// /// 发动机号码 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("EngineNo")] public string EngineNo{ get; set; } /// /// 注册日期 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("RegisterDate")] public string RegisterDate{ get; set; } /// /// 发证日期 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("IssueDate")] public string IssueDate{ get; set; } /// /// 印章 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Seal")] public string Seal{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "PlateNo", this.PlateNo); this.SetParamSimple(map, prefix + "VehicleType", this.VehicleType); this.SetParamSimple(map, prefix + "Owner", this.Owner); this.SetParamSimple(map, prefix + "Address", this.Address); this.SetParamSimple(map, prefix + "UseCharacter", this.UseCharacter); this.SetParamSimple(map, prefix + "Model", this.Model); this.SetParamSimple(map, prefix + "Vin", this.Vin); this.SetParamSimple(map, prefix + "EngineNo", this.EngineNo); this.SetParamSimple(map, prefix + "RegisterDate", this.RegisterDate); this.SetParamSimple(map, prefix + "IssueDate", this.IssueDate); this.SetParamSimple(map, prefix + "Seal", this.Seal); } } }