using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SecurityScene Data Structure.
///
[Serializable]
public class SecurityScene : AopObject
{
///
/// 接入渠道
///
[JsonProperty("access_channel")]
public string AccessChannel { get; set; }
///
/// 事件信息
///
[JsonProperty("ctu_params")]
public string CtuParams { get; set; }
///
/// 产品名称
///
[JsonProperty("product_name")]
public string ProductName { get; set; }
///
/// 产品节点
///
[JsonProperty("product_node")]
public string ProductNode { get; set; }
///
/// 扩展参数
///
[JsonProperty("security_scene_params")]
public string SecuritySceneParams { get; set; }
///
/// 系统名称
///
[JsonProperty("system_name")]
public string SystemName { get; set; }
///
/// 总金额
///
[JsonProperty("total_fee")]
public string TotalFee { get; set; }
}
}