NewGaoKaoApi/PaymentSDK/AliPay/Domain/InsHealthSendFlowResult.cs

67 lines
2.0 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>
/// InsHealthSendFlowResult Data Structure.
/// </summary>
[Serializable]
public class InsHealthSendFlowResult : AopObject
{
/// <summary>
/// 业务类型。HEALTH_BEAN_SIMPLE_UPGRADE 免费医疗金、HEALTH_DSDB_NEW_OUTPATIENT 多收多宝新门诊、HEALTH_GUARDIAN_GOLD 守护金
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 入口
/// </summary>
[XmlElement("entrance")]
public string Entrance { get; set; }
/// <summary>
/// 发放时间
/// </summary>
[XmlElement("offer_time")]
public string OfferTime { get; set; }
/// <summary>
/// 发放流水的外部业务单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// COMMON_GIFT_INSURANCE_PRODUCT_GROUP 赠险通用产品组、CUSTOMER_GIFT_INSURANCE_PRODUCT_GROUP C端赠险产品组、BUSINESS_GIFT_INSURANCE_PRODUCT_GROUP B端赠险产品组、XHB_GIFT_INSURANCE_PRODUCT_GROUP 相互保赠险产品组
/// </summary>
[XmlElement("product_group_biz_type")]
public string ProductGroupBizType { get; set; }
/// <summary>
/// 发放保额
/// </summary>
[XmlElement("product_sum_insured")]
public string ProductSumInsured { get; set; }
/// <summary>
/// 来源
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
/// <summary>
/// 发放状态。0代表发放未领取1代表发放已领取
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 用户支付宝UID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}