using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarViolationInfoPushModel Data Structure. /// [Serializable] public class AlipayEcoMycarViolationInfoPushModel : AopObject { /// /// 1:可在线处理, 2:不可在线处理, 3:需查询确定 /// [JsonProperty("deal_type")] public string DealType { get; set; } /// /// 暂无 /// [JsonProperty("push_type")] public string PushType { get; set; } /// /// 违章地点 /// [JsonProperty("vi_address")] public string ViAddress { get; set; } /// /// 违章罚款金额 /// [JsonProperty("vi_fine")] public string ViFine { get; set; } /// /// 是否已处理, 0:已处理,1:未处理 /// [JsonProperty("vi_handled")] public string ViHandled { get; set; } /// /// 车牌号 /// [JsonProperty("vi_number")] public string ViNumber { get; set; } /// /// 违章扣分 /// [JsonProperty("vi_point")] public string ViPoint { get; set; } /// /// 违章时间(yyyyMMddhhmmss) /// [JsonProperty("vi_time")] public string ViTime { get; set; } /// /// 违章行为 /// [JsonProperty("vi_type")] public string ViType { get; set; } } }