NewGaoKaoApi/PaymentSDK/AliPay/Domain/InsOffilneProduct.cs

31 lines
924 B
C#
Raw 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>
/// InsOffilneProduct Data Structure.
/// </summary>
[Serializable]
public class InsOffilneProduct : AopObject
{
/// <summary>
/// 需要透传给机构的个性化数据比如机构的内部产品编码以json格式返回key需要和蚂蚁的技术进行确认
/// </summary>
[XmlElement("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 产品编码,蚂蚁保险平台会为每个产品分配一个唯一的产品编码
/// </summary>
[XmlElement("prod_code")]
public string ProdCode { get; set; }
/// <summary>
/// 产品名称,机构在蚂蚁保险后台进行配置的
/// </summary>
[XmlElement("prod_name")]
public string ProdName { get; set; }
}
}