NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportEtcM...

31 lines
902 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceTransportEtcMediaGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportEtcMediaGetModel : AopObject
{
/// <summary>
/// 业务标识。 1身份证正面照片 2身份证背面照片 3行驶证正页正面照片 4行驶证副页正面照片 5车头照片
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 支付宝生成的申请单id
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 外部业务订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
}
}