NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignActi...

45 lines
1.4 KiB
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>
/// KoubeiMarketingCampaignActivityBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignActivityBatchqueryModel : AopObject
{
/// <summary>
/// 操作人id必须和operator_type配对存在不填时默认是商户
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作人类型,有以下值可填MER外部商户MER_OPERATOR外部商户操作员PROVIDER外部服务商PROVIDER_STAFF外部服务商员工默认不需要填这个字段默认为MER
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
/// <summary>
/// 页码默认为1
/// </summary>
[XmlElement("page_number")]
public string PageNumber { get; set; }
/// <summary>
/// 页大小默认为20
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 查询条件
/// </summary>
[XmlArray("query_criterias")]
[XmlArrayItem("condition")]
public List<Condition> QueryCriterias { get; set; }
}
}