NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntfortuneMarketingCrowdWsh...

25 lines
751 B
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>
/// AntfortuneMarketingCrowdWshopMatchModel Data Structure.
/// </summary>
[Serializable]
public class AntfortuneMarketingCrowdWshopMatchModel : AopObject
{
/// <summary>
/// 财富号机构自建人群id应用于财富号机构人群匹配。财富号合作机构通过财富号后台创建人群后获得人群id
/// </summary>
[XmlElement("crowd_id")]
public string CrowdId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID通过alipay.user.info.share接口获取
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}