NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataBizadvis...

25 lines
1.0 KiB
C#
Raw 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>
/// KoubeiMarketingDataBizadviserMyddsreportQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataBizadviserMyddsreportQueryModel : AopObject
{
/// <summary>
/// req_parameters是请求参数汇集的一个json串和格式如下 json串里需要传两个参数shopId门店Id memberType会员类型1:会员、2:潜客。 "req_parameters": [{ "paramKey": "shopId", "paramValue": "门店Id 的值" },{ "paramKey": "memberType", "paramValue": "1" }]
/// </summary>
[XmlElement("req_parameters")]
public string ReqParameters { get; set; }
/// <summary>
/// uniq_key 为请求类型传值为shopMemberHeatmap时查询门店会员/潜在会员 热力图数据;
/// </summary>
[XmlElement("uniq_key")]
public string UniqKey { get; set; }
}
}