using System.Text.Json.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AlipayBossFncInvoicereceiptCreateModel Data Structure.
///
public class AlipayBossFncInvoicereceiptCreateModel : AlipayObject
{
///
/// 账单金额变更消息事件码 AR_MTHLY_BILL_CREATE:应收账单创建, AR_MTHLY_BILL_CHANGE:应收金额更新
///
[JsonPropertyName("event_code")]
public string EventCode { get; set; }
///
/// 账单金额变更消息事件类型 CREATE:创建事件,UPDATE:更新事件
///
[JsonPropertyName("event_type")]
public string EventType { get; set; }
///
/// 月帐单信息
///
[JsonPropertyName("monthly_bill")]
public ArMonthlyBillDTO MonthlyBill { get; set; }
///
/// 事件全局id,可以使用uuid
///
[JsonPropertyName("msg_id")]
public string MsgId { get; set; }
///
/// 消息来源 01:主站,02:芝麻,03:金融云,04:微贷
///
[JsonPropertyName("out_biz_type")]
public string OutBizType { get; set; }
}
}