NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppCommonNotifySendM...

55 lines
1.6 KiB
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>
/// AlipayEbppCommonNotifySendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppCommonNotifySendModel : AopObject
{
/// <summary>
/// 水电燃等机构为用户分配的户号
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型的缩写: JF-缴费
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 出账机构的缩写
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 特定通知类型可能需要提供扩展信息用JSON字符串描述
/// </summary>
[XmlElement("extend_data")]
public string ExtendData { get; set; }
/// <summary>
/// 机构为用户发送通知的类型,需要与支付宝协商确定
/// </summary>
[XmlElement("notify_type")]
public string NotifyType { get; set; }
/// <summary>
/// 子业务类型英文名称: ELECTRIC-电力 GAS-燃气 WATER-水
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 支付宝用户id可空用于特定场景下向指定用户发送通知
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}