NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsSceneInsservicepro...

61 lines
1.7 KiB
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>
/// AlipayInsSceneInsserviceprodSerprogressSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneInsserviceprodSerprogressSyncModel : AopObject
{
/// <summary>
/// 蚂蚁服务合约编号
/// </summary>
[XmlElement("ant_ser_contract_no")]
public string AntSerContractNo { get; set; }
/// <summary>
/// 蚂蚁服务产品号
/// </summary>
[XmlElement("ant_ser_prod_no")]
public string AntSerProdNo { get; set; }
/// <summary>
/// 扩展信息JSON字符串格式。该接口为通用接口需要和增值服务中台的开发同学根据不同的业务约定不同的字段。
/// </summary>
[XmlElement("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 状态变更时间
/// </summary>
[XmlElement("change_time")]
public string ChangeTime { get; set; }
/// <summary>
/// 外部业务号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 服务业务单号
/// </summary>
[XmlElement("ser_biz_no")]
public string SerBizNo { get; set; }
/// <summary>
/// 服务业务类型
/// </summary>
[XmlElement("ser_biz_type")]
public string SerBizType { get; set; }
/// <summary>
/// 状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}