using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ProdParams Data Structure.
///
[Serializable]
public class ProdParams : AopObject
{
///
/// 预授权业务信息
///
[JsonProperty("auth_biz_params")]
public string AuthBizParams { get; set; }
}
}