using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEbppProdmodeDropdataQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppProdmodeDropdataQueryModel : AopObject
{
///
/// 参数为:缴费业务类型
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 参数包含:业务类型、子业务类型、产品模式等
///
[JsonProperty("search_type")]
public string SearchType { get; set; }
}
}