NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialGiftOrderConfir...

43 lines
1.8 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySocialGiftOrderConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialGiftOrderConfirmModel : AopObject
{
/// <summary>
/// 商户通过该接口落卡包后其支付宝卡包中对应实体卡、券的失效时间。该值可以选填。【注意如果不填写默认为生效时间后3年】。其时间规则可以在商户后台进行配置。
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 商户再送礼平台的唯一ID用于标识具体的调用业务方需要先在送礼平台进行业务类型的分配之后才看使用。
/// </summary>
[XmlElement("mid")]
public string Mid { get; set; }
/// <summary>
/// 送礼平台方的主订单ID
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商户通过该接口落卡包后,其支付宝卡包中对应实体(卡、券)的生效时间。该值可以选填。默认生效时间为当前时间。其规则可以在商户后台进行配置。
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 订单确认金额用户可选填如果不填则使用SKU票面价值。如果填写则使用该填写的价格在卡包中展示如果后台配置为落卡包。注意支付宝端不会校验该金额的有效性但会校验是否不小于零需要商户自行保证。
/// </summary>
[XmlElement("total_price")]
public string TotalPrice { get; set; }
}
}