NewGaoKaoApi/PaymentSDK/AliPay/Domain/InsHealthGiftBatchAlreadyOp...

25 lines
746 B
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>
/// InsHealthGiftBatchAlreadyOpenedResult Data Structure.
/// </summary>
[Serializable]
public class InsHealthGiftBatchAlreadyOpenedResult : AopObject
{
/// <summary>
/// 是否已开通。true为开通false为未开通
/// </summary>
[XmlElement("already_opened")]
public bool AlreadyOpened { get; set; }
/// <summary>
/// 业务类型。免费医疗金 HEALTH_BEAN_SIMPLE_UPGRADE、守护金 HEALTH_GUARDIAN_GOLD、多收多宝新门诊 HEALTH_DSDB_NEW_OUTPATIENT
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
}
}