27 lines
680 B
C#
27 lines
680 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayInsAutoAutoinsprodQuoteApplyResponse.
|
|
/// </summary>
|
|
public class AlipayInsAutoAutoinsprodQuoteApplyResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 车险询价申请号
|
|
/// </summary>
|
|
[XmlElement("enquiry_biz_id")]
|
|
public string EnquiryBizId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报价返回信息
|
|
/// </summary>
|
|
[XmlArray("quote_infos")]
|
|
[XmlArrayItem("quote_info")]
|
|
public List<QuoteInfo> QuoteInfos { get; set; }
|
|
}
|
|
}
|