using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayEbppDetectCreateModel Data Structure.
///
[Serializable]
public class AlipayEbppDetectCreateModel : AopObject
{
///
/// 业务类型。巡检平台统一分配。
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 数据来源(一般为系统名称)
///
[XmlElement("data_from_type")]
public string DataFromType { get; set; }
///
/// 外部业务标识.如pipelineId
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 检测项列表。支持对链接url、纯文本、图片进行检测。
///
[XmlArray("service_list")]
[XmlArrayItem("detect_service_entity")]
public List ServiceList { get; set; }
///
/// 小程序appId
///
[XmlElement("tinyapp_id")]
public string TinyappId { get; set; }
///
/// 小程序pid
///
[XmlElement("tinyapp_partner_id")]
public string TinyappPartnerId { get; set; }
}
}