NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataMallChec...

27 lines
727 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMarketingDataMallCheckGetModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataMallCheckGetModel : AopObject
{
/// <summary>
/// 安全校验数据内容入参
/// </summary>
[XmlArray("check_contents")]
[XmlArrayItem("data_sec_check_content")]
public List<DataSecCheckContent> CheckContents { get; set; }
/// <summary>
/// 数据源:USER--C端MERCHANT--B端
/// </summary>
[XmlElement("data_source")]
public string DataSource { get; set; }
}
}