using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayUserPassInstancebatchAddModel Data Structure.
///
[Serializable]
public class AlipayUserPassInstancebatchAddModel : AopObject
{
///
/// alipass实例操作信息列表。
///
[XmlArray("instance_op_list")]
[XmlArrayItem("alipass_instance_op_info")]
public List InstanceOpList { get; set; }
///
/// 支付宝用户识别信息,需结合大礼包发券组件使用,对接文档:https://docs.open.alipay.com/199/sy3hs4。
///
[XmlElement("recognition_info")]
public string RecognitionInfo { get; set; }
///
/// 对象识别类型,2表示按UserId发券。
///
[XmlElement("recognition_type")]
public string RecognitionType { get; set; }
}
}