using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceTransportMessageSendModel Data Structure.
///
[Serializable]
public class AlipayCommerceTransportMessageSendModel : AopObject
{
///
/// 卡类型
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 商户业务时间。格式为"yyyy-MM-dd HH:mm:ss"。
///
[XmlElement("merchant_biz_time")]
public string MerchantBizTime { get; set; }
///
/// 消息通知数据。该字段格式请与支付宝技术人员沟通。
///
[XmlElement("notify_data")]
public string NotifyData { get; set; }
///
/// 消息发送时间。格式为"yyyy-MM-dd HH:mm:ss"。指定后,将会在这个指定时间点发送消息。不指定,则消息会立即发送。
///
[XmlElement("notify_time")]
public string NotifyTime { get; set; }
///
/// 通知类型,由支付宝配置提供。具体的通知类型请与支付宝技术人员沟通。
///
[XmlElement("notify_type")]
public string NotifyType { get; set; }
///
/// 目标用户ID列表,最大支持50个。
///
[XmlArray("user_ids")]
[XmlArrayItem("string")]
public List UserIds { get; set; }
}
}