NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelPromoti...

43 lines
1.4 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>
/// AlipayOverseasTravelPromotionReceiveModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelPromotionReceiveModel : AopObject
{
/// <summary>
/// 多端统一渠道信息与服务提供方协商分配为空则默认取appId
/// </summary>
[XmlElement("ch_info")]
public string ChInfo { get; set; }
/// <summary>
/// 发现平台优惠id
/// </summary>
[XmlElement("promotion_id")]
public string PromotionId { get; set; }
/// <summary>
/// 请求唯一id只能是大小写字母及数字。不带业务含义可以由uuid等随机生成用于唯一标识一笔业务方便与外部排查问题
/// </summary>
[XmlElement("unique_id")]
public string UniqueId { get; set; }
/// <summary>
/// 用户id与user_id_type配合使用暂时仅支持集团havanaId和支付宝2088开头的16位数字ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 用户id类型枚举与user_id配合使用。取值说明HAVANA为集团havanaIdALIPAY为支付宝2088开头用户id
/// </summary>
[XmlElement("user_id_type")]
public string UserIdType { get; set; }
}
}