NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMedicalcareCommonT...

70 lines
2.5 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoMedicalcareCommonTpcardNotifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMedicalcareCommonTpcardNotifyModel : AopObject
{
/// <summary>
/// 模板样式信息中的底部动作
/// </summary>
[XmlArray("action_info")]
[XmlArrayItem("medical_sv_tp_card_action_info")]
public List<MedicalSvTpCardActionInfo> ActionInfo { get; set; }
/// <summary>
/// 模板样式信息中的内容信息
/// </summary>
[XmlArray("body_info")]
[XmlArrayItem("medical_sv_tp_card_body_info")]
public List<MedicalSvTpCardBodyInfo> BodyInfo { get; set; }
/// <summary>
/// 业务扩展参数json格式
/// </summary>
[XmlElement("extend_params")]
public string ExtendParams { get; set; }
/// <summary>
/// 模板样式信息中的头部信息
/// </summary>
[XmlElement("header_info")]
public MedicalSvTpCardHeadInfo HeaderInfo { get; set; }
/// <summary>
/// 通知时间 注意通知时间确定card即时显示还是预定未来某个时间显示 通知时间不能早于当前时间
/// </summary>
[XmlElement("notify_time")]
public string NotifyTime { get; set; }
/// <summary>
/// 操作类型: CREATE_UPDATE表示创建并更新通知信息 DELETE表示删除通知信息
/// </summary>
[XmlElement("operate")]
public string Operate { get; set; }
/// <summary>
/// 通知业务模板样式编码,根据业务增加会增加模板类型 sv_remind_reg 预约挂号 sv_remind_clinic 诊间缴费 sv_remind_answer 问诊首次答复 sv_remind_report 报告已出 sv_remind_vaccine 疫苗接种 sv_app_doctors_say 名医说
/// </summary>
[XmlElement("template_code")]
public string TemplateCode { get; set; }
/// <summary>
/// 第三方唯一序列号,创建后不能修改,需要保证在商户端不重复。
/// </summary>
[XmlElement("third_no")]
public string ThirdNo { get; set; }
/// <summary>
/// 支付宝用户ID,可以通过 获取会员信息产品 获取支付宝用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}