51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KbAdvertIdentifyResponse Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KbAdvertIdentifyResponse : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 根据benefit_type,确定ID含义 SINGLE_VOUCHER时,benefit_ids为券ID
|
||
/// </summary>
|
||
[XmlArray("benefit_ids")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> BenefitIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 发放权益类型 SINGLE_VOUCHER:单券
|
||
/// </summary>
|
||
[XmlElement("benefit_type")]
|
||
public string BenefitType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 返回码 success: 成功 invalid-arguments: 无效参数 retry-exception: 异常请重试 isv.user-already-get-voucher:用户已经领过该券,同时券状态为有效 isv.item_inventory_not_enough:优惠领光了 isv.item_not_in_this_shop_sales:不是该商家的优惠,不能领取 isv.voucher_activity_not_started:活动未开始 isv.voucher_activity_expired:活动已结束 isv.crowd_limit_not_match_error:暂无领取资格,详情请咨询商家 isv.member_crowd_limit_not_match_error:会员专属,请先注册会员
|
||
/// </summary>
|
||
[XmlElement("code")]
|
||
public string Code { get; set; }
|
||
|
||
/// <summary>
|
||
/// JSON格式数据,alipass_url为打开钱包的地址
|
||
/// </summary>
|
||
[XmlElement("ext_info")]
|
||
public string ExtInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主键的值
|
||
/// </summary>
|
||
[XmlElement("identify")]
|
||
public string Identify { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主键类型
|
||
/// </summary>
|
||
[XmlElement("identify_type")]
|
||
public string IdentifyType { get; set; }
|
||
}
|
||
}
|