You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.9 KiB
C#

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.Response
{
/// <summary>
/// AlipayPointOrderGetResponse.
/// </summary>
public class AlipayPointOrderGetResponse : AopResponse
{
/// <summary>
/// 支付宝集分宝发放流水号
/// </summary>
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
/// <summary>
/// 发放时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 支付宝集分宝发放者用户ID
/// </summary>
[XmlElement("dispatch_user_id")]
public string DispatchUserId { get; set; }
/// <summary>
/// 向用户展示集分宝发放备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// isv提供的发放号订单号由数字和字母组成最大长度为32为需要保证每笔发放的唯一性支付宝会对该参数做唯一性控制。如果使用同样的订单号支付宝将返回订单号已经存在的错误
/// </summary>
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
/// <summary>
/// 集分宝发放流水状态I表示处理中S表示成功F表示失败
/// </summary>
[XmlElement("order_status")]
public string OrderStatus { get; set; }
/// <summary>
/// 发放集分宝的数量
/// </summary>
[XmlElement("point_count")]
public long PointCount { get; set; }
/// <summary>
/// 支付宝集分宝接收者用户ID
/// </summary>
[XmlElement("receive_user_id")]
public string ReceiveUserId { get; set; }
}
}