using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsSceneTaskflowBatchCreateModel Data Structure.
///
[Serializable]
public class AlipayInsSceneTaskflowBatchCreateModel : AopObject
{
///
/// 数量
///
[XmlElement("count")]
public long Count { get; set; }
///
/// 过期时间
///
[XmlElement("expire_time")]
public string ExpireTime { get; set; }
///
/// 扩展字段
///
[XmlElement("extra_map")]
public string ExtraMap { get; set; }
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 权益类型
///
[XmlElement("type")]
public string Type { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}