using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayAccountFinriskCompanyVerifyCreateModel Data Structure.
///
[Serializable]
public class AlipayAccountFinriskCompanyVerifyCreateModel : AopObject
{
///
/// 请求系统
///
[XmlElement("app")]
public string App { get; set; }
///
/// 业务参数列表
///
[XmlElement("param")]
public string Param { get; set; }
///
/// 外部请求唯一标识
///
[XmlElement("request_id")]
public string RequestId { get; set; }
///
/// 防伪场景编码
///
[XmlElement("scene_id")]
public string SceneId { get; set; }
///
/// 租户ID
///
[XmlElement("tnt_inst_id")]
public string TntInstId { get; set; }
}
}