using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KbAdvertIdentifyResponse Data Structure.
///
[Serializable]
public class KbAdvertIdentifyResponse : AopObject
{
///
/// 根据benefit_type,确定ID含义 SINGLE_VOUCHER时,benefit_ids为券ID
///
[XmlArray("benefit_ids")]
[XmlArrayItem("string")]
public List BenefitIds { get; set; }
///
/// 发放权益类型 SINGLE_VOUCHER:单券
///
[XmlElement("benefit_type")]
public string BenefitType { get; set; }
///
/// 返回码 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:会员专属,请先注册会员
///
[XmlElement("code")]
public string Code { get; set; }
///
/// JSON格式数据,alipass_url为打开钱包的地址
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 主键的值
///
[XmlElement("identify")]
public string Identify { get; set; }
///
/// 主键类型
///
[XmlElement("identify_type")]
public string IdentifyType { get; set; }
}
}