NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelShopFol...

49 lines
1.7 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>
/// AlipayOverseasTravelShopFollowModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelShopFollowModel : AopObject
{
/// <summary>
/// 取值说明CONFIRM确认收藏/CANCEL取消收藏
/// </summary>
[XmlElement("action_type")]
public string ActionType { get; set; }
/// <summary>
/// 多端统一渠道信息与服务提供方协商分配为空则默认取appId
/// </summary>
[XmlElement("ch_info")]
public string ChInfo { get; set; }
/// <summary>
/// 支付宝跨境游店铺ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { 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。不传的时候默认为ALIPAY。
/// </summary>
[XmlElement("user_id_type")]
public string UserIdType { get; set; }
}
}