NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceHellob...

55 lines
2.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>
/// AlipayDataDataserviceHellobikeLogSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceHellobikeLogSyncModel : AopObject
{
/// <summary>
/// 业务类型表示用户在参与hellobike月卡打折活动中发生的业务操作领券和购买月卡有两个枚举值getvoucher:领券pay:购买月卡该参数由hellobike调用方所执行的业务操作确定取值。
/// </summary>
[XmlElement("action_type")]
public string ActionType { get; set; }
/// <summary>
/// 用户购买hellobike月卡的渠道目前有两种alipay_tinyapp:小程序, hellobike_app:hellobike客户端该参数取值为hellobike调用方自身的业务参数。
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 城市编码国标码hellobike定位到的用户当前所在城市该参数由hellobike调用方定位用户当前所在城市得到。
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 用户在hellobike购买月卡的实际金额单位为分action_type=pay的时候必传其他场景不必传该参数取值为hellobike调用方自身的业务参数。
/// </summary>
[XmlElement("pay_price_cent")]
public long PayPriceCent { get; set; }
/// <summary>
/// 用户购买hellobike月卡时使用的支付方式目前和hellobike约定的几种支付方式为alipay_account:支付宝支付hellobike_account:hellobike余额weixin_pay:微信支付该参数取值为hellobike调用方自身的业务参数。
/// </summary>
[XmlElement("pay_tool")]
public string PayTool { get; set; }
/// <summary>
/// 用户参与一次月卡打折活动的业务标识需要唯一。通过该业务标识串联用户在一次月卡打折活动中的涉及的关键业务流程调用alipay.data.aiservice.smartprice.get接口获取用户购买月卡的活动价格、领取折扣券、购买月卡3个业务流程该参数由hellobike业务端生成该id并在上述3个业务流程推进过程中存储记录该id。
/// </summary>
[XmlElement("trace_id")]
public string TraceId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID作为用户标识该参数可通过alipay.user.info.share接口获取。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}