NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataAiservicePriceopt...

95 lines
2.9 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataAiservicePriceoptimizerGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiservicePriceoptimizerGetModel : AopObject
{
/// <summary>
/// 接口版本号
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 目前有两种 :alipay_tinyapp:小程序, app:app客户端
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 市 城市码(例如 杭州 330100
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 拓展变量列表
/// </summary>
[XmlArray("extend_agrs")]
[XmlArrayItem("make_price_agrs")]
public List<MakePriceAgrs> ExtendAgrs { get; set; }
/// <summary>
/// 特征变量列表
/// </summary>
[XmlArray("feature_args")]
[XmlArrayItem("make_price_agrs")]
public List<MakePriceAgrs> FeatureArgs { get; set; }
/// <summary>
/// 活动页面来源,即用户跳转到 活动页面的前一个页面
/// </summary>
[XmlElement("from")]
public string From { get; set; }
/// <summary>
/// 商户Id 接入方ISV 必填)
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 定价对象列表
/// </summary>
[XmlArray("product_list")]
[XmlArrayItem("make_price_cards")]
public List<MakePriceCards> ProductList { get; set; }
/// <summary>
/// 标识定价场景 single_pay:单次支付定价 stored_value_card:储值卡
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 接入方名称
/// </summary>
[XmlElement("service_name")]
public string ServiceName { get; set; }
/// <summary>
/// 用户参与活动的业务标识需要唯一。通过该业务标识串联用户在活动中的涉及的关键业务流程该参数由mammoth业务端生成该id并在上述业务流程推进过程中存储记录该id。
/// </summary>
[XmlElement("trace_id")]
public string TraceId { get; set; }
/// <summary>
/// 最小定价单元ID
/// </summary>
[XmlElement("unit_id")]
public string UnitId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID.作为用户标识该参数可通过alipay.user.info.share接口获取。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}