using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceKidsTokenCreateModel Data Structure.
///
[Serializable]
public class AlipayCommerceKidsTokenCreateModel : AopObject
{
///
/// 业务数据
///
[XmlElement("biz_data")]
public string BizData { get; set; }
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 产品码
///
[XmlElement("product_code")]
public string ProductCode { get; set; }
///
/// 场景码
///
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}