NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportMess...

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