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